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 the diffrenet bettwen HTTP and internet protocol
What is the heap?
what do you mean by enumeration constant?
Is c++ based on c?
What does the && operator do in a program code?
Are there namespaces in c?
Why do we use pointer to pointer in c?
What are the disadvantages of external storage class?
What is the use of a static variable in c?
What is the difference between struct and union in C?
How many levels of pointers have?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
How do I swap bytes?
Write a code of a general series where the next element is the sum of last k terms.
Explain enumerated types in c language?