String in C, BCA, MCA, MSc(it) Lecture by Dhanesh Gupta.
Strings are defined as an array of characters or a pointer to a portion of memory containing ASCII characters. A string in C is a sequence of zero or more characters …
Faculty: Education B.Ed. II Year(III Semester) Model Papers Sr. No. Paper Name Question Paper Link 1 Knowledge & Curriculam Click Here 2 Contemporary Indian and Education Click Here
Faculty: Education B.Ed. I Year(I Semester) Model Papers Sr. No. Paper Name Question Paper Link 1 Child Development and Growing Up Click Here 2 Contemporary Indian and Education Click Here 3 …
Faculty: ARTS B.A. III Year(VI Semester) Model Papers Sr. No. Paper Name Question Paper Link 1 Economics Click Here 2 English Literature Click Here 3 Geography Click Here 4 Political Science …
Strings are defined as an array of characters or a pointer to a portion of memory containing ASCII characters. A string in C is a sequence of zero or more characters …
Strings are defined as an array of characters or a pointer to a portion of memory containing ASCII characters. A string in C is a sequence of zero or more characters followed by a NULL ‘\0’ character.
In C programming, array of character are called strings. A string is terminated by null character /0. For example “c string tutorial”
Here, “c string tutorial” is a string. When, compiler encounters strings, it appends null character at the end of string.
Interchange the elements of an array Interchange the elements of an arrays is to exchange the elements of both the array with each other A. [5]=1,2,3,4,5 B. [5]=6,7,8,9,10 After Exchange :- …
Interchange the elements of an array
Interchange the elements of an arrays is to exchange the elements of both the array with each other
A. [5]=1,2,3,4,5 B. [5]=6,7,8,9,10
After Exchange :-
A. [5]= 6,7,8,9,10 B. [5]= 1,2,3,4,5
