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: Law LLB III Year(V Sem.)Model Papers Sr. No. Paper Name Question Paper Link 1 Pleading, Drafting and Conveyance Click Here
Faculty: Law Post Graduate Diploma In Labour Law(PGDLL)Model Papers Sr. No. Paper Name Question Paper Link 1 Labour Jurisprudence and the International Labour Organization(I.L.O.) Click Here 2 Labour Law Labour Welfare, …
Faculty: Law LLB II Year(III Sem.)Model Papers Sr. No. Paper Name Question Paper Link 1 Bhartiya Nagrik Suraksha Sanhita Click Here
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
