11. 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 / subha
answer:c
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
How can I send mail from within a c program?
What is a buffer in c?
The difference between printf and fprintf is ?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What do you know about the use of bit field?
Explain what are bus errors, memory faults, and core dumps?
What is .obj file in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
diff between exptected result and requirement?
State two uses of pointers in C?
What is gets() function?
What are Macros? What are its advantages and disadvantages?
Explain threaded binary trees?
What is the difference between a free-standing and a hosted environment?
What is the use of #include in c?