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 / basha
No out put will come bcoz errors are there in the program
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is oops c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is bash c?
What is meant by keywords in c?
What Is The Difference Between Null And Void Pointer?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is the difference between typedef struct and struct?
What is hashing in c?
Is c high or low level?
Difference between Function to pointer and pointer to function
What is the purpose of realloc()?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What is volatile variable how do you declare it?
Explain how are 16- and 32-bit numbers stored?
Why do some versions of toupper act strangely if given an upper-case letter?