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


Please Help Members By Posting Answers For Below Questions

Why we use stdio h in c?

776


What is time null in c?

758


What is the purpose of scanf() and printf() functions?

900


Explain what math functions are available for integers? For floating point?

835


using for loop sum 2 number of any 4 digit number in c language

1977


Who invented b language?

1133


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

887


What is your stream meaning?

841


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3420


how to create duplicate link list using C???

2259


What does sizeof int return?

814


Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?

1224


What is cohesion and coupling in c?

785


Why do we write return 0 in c?

769


Explain how do you view the path?

861