What character terminates all strings composed of character
arrays?
1) 0
2) .
3) END
Answer Posted / jegadeesh
The answer is '\0' not /0
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Explain main function in c?
Why void main is used in c?
Write a program to print fibonacci series using recursion?
What is function definition in c?
When is a “switch” statement preferable over an “if” statement?
What is a const pointer in c?
Write a program with dynamically allocation of variable.
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Explain how do you determine whether to use a stream function or a low-level function?
Is c dynamically typed?
Write programs for String Reversal & Palindrome check
how do you execute a c program in unix.
What is the sizeof () operator?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Explain the difference between null pointer and void pointer.