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
Describe static function with its usage?
write a program to print data of 5 five students with structures?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is the default value of local and global variables in c?
What is c basic?
What are the different categories of functions in c?
What are the different types of C instructions?
How can I ensure that integer arithmetic doesnt overflow?
Explain how can I convert a string to a number?
Is exit(status) truly equivalent to returning the same status from main?
What are the types of unary operators?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What are the advantages of union?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What are the applications of c language?