String concatenation
Answers were Sorted based on User's Feedback
Answer / shrikantauti
it appends two strings. for this strcat() is used.
| Is This Answer Correct ? | 3 Yes | 0 No |
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
What is #line in c?
implement general tree using link list
What is table lookup in c?
What is unsigned int in c?
what are the interview question's in the language c
What is data types?
what is the use of ‘auto’ keyword?
What is wild pointer in c with example?
I need previous papers of CSC.......plz help out by posting them.......
How can I read a directory in a c program?