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

What is a substring in c?

579


What are the advantage of c language?

543


What is meant by initialization and how we initialize a variable?

579


What is the full form of getch?

573


What is the value of uninitialized variable in c?

562






How main function is called in c?

620


my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

1107


Differentiate Source Codes from Object Codes

807


Can we change the value of #define in c?

579


What is pass by reference in functions?

316


How do I send escape sequences to control a terminal or other device?

600


What is ponter?

762


What are pointers? What are stacks and queues?

571


What is 2 d array in c?

544


How do you print only part of a string?

602