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
What is boolean in c?
Which node is more powerful and can handle local information processing or graphics processing?
How is = symbol different from == symbol in c programming?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Describe static function with its usage?
Explain what is the best way to comment out a section of code that contains comments?
I came across some code that puts a (void) cast before each call to printf. Why?
Give basis knowledge of web designing ...
Is c still used?
Explain the advantages of using macro in c language?
What is hash table in c?
Explain what are the different file extensions involved when programming in c?
What is a ternary operator in c?
Explain what are preprocessor directives?
Explain the difference between getch() and getche() in c?