Answer Posted / arun mavi 8800849839
strcmp is a sting word which is used in our c++ language .Its means to read and write the function
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
Why c is a procedural language?
Can a void pointer point to a function?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
what is use of malloc and calloc?
Tell us something about keyword 'auto'.
What are the salient features of c languages?
Explain why C language is procedural?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Is multithreading possible in c?
what are bit fields in c?
What is double pointer?
Can you write a programmer for FACTORIAL using recursion?
Can we initialize extern variable in c?
Where in memory are my variables stored?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0