What character terminates all strings composed of character
arrays?
1) 0
2) .
3) END
Answers were Sorted based on User's Feedback
Answer / 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 |
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
what is the size of an integer variable?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
what is the difference between 123 and 0123 in c?
Explain high-order bytes.
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
Is c easy to learn?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Explain continue keyword in c
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file