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
Answer Posted / ayyanar.m
garbage
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is not a pointer null after calling free?
Define VARIABLE?
How can I avoid the abort, retry, fail messages?
In c programming language, how many parameters can be passed to a function ?
Can a file other than a .h file be included with #include?
What header files do I need in order to define the standard library functions I use?
Why c is faster than c++?
What is bin sh c?
What are keywords in c with examples?
diff between exptected result and requirement?
What is static and volatile in c?
What is difference between %d and %i in c?
What is extern variable in c with example?
What is a nested formula?
Tell me the use of bit field in c language?