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 / priya
Answer is d
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What is static memory allocation?
What is a rvalue?
How can I read/write structures from/to data files?
What is the meaning of ?
How can you avoid including a header more than once?
How many header files are in c?
Why do we use namespace feature?
Write a program on swapping (100, 50)
What are the usage of pointer in c?
Explain low-order bytes.
What is the use of sizeof?
Tell us bitwise shift operators?
What is the meaning of 2d in c?
Is there a way to switch on strings?
What functions are used in dynamic memory allocation in c?