What is difference between constant pointer and constant variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of ?: Operator?
Why do we write return 0 in c?
What are the two types of functions in c?
Explain which function in c can be used to append a string to another string?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
How can I call a function with an argument list built up at run time?
what are the files which are automatically opened when a c file is executed?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
wat is the difference between array and pointer?
What is meant by type casting?
Does sprintf put null character?