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 / ayyanar.m
garbage
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you use a pointer to a function?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
please explain every phase in the "SDLC" in the dotnet.
What does the error message "DGROUP exceeds 64K" mean?
What is wild pointer in c?
Write a program to reverse a linked list in c.
How many levels of indirection in pointers can you have in a single declaration?
Why do we need volatile in c?
will u please send me the placement papers to my mail???????????????????
How can I call fortran?
What is the use of linkage in c language?
What is the difference between exit() and _exit() function?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor