What character terminates all strings composed of character
arrays?
1) 0
2) .
3) END
Answer Posted / a programmer
May be the options are not correct. Do u feel that 0 is
ascii zero or numeric zero. If numeric zero, then the answer
is wrong. Every string will be terminated with the special
character '/0'.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is the difference between if else and switchstatement
What are structural members?
write a program to print largest number of each row of a 2D array
What is property type c?
What is clrscr ()?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is mean by data types in c?
Can you apply link and association interchangeably?
Can we increase size of array in c?
Can we assign string to char pointer?
What are the uses of null pointers?
Explain how do you list a file’s date and time?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What are the rules for identifiers in c?
is it possible to create your own header files?