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
When we use void main and int main?
How can I change their mode to binary?
What are the rules for identifiers in c?
How can I change the size of the dynamically allocated array?
How can I remove the trailing spaces from a string?
Discuss the function of conditional operator, size of operator and comma operator with examples.
In c programming language, how many parameters can be passed to a function ?
In C language what is a 'dangling pointer'?
How are Structure passing and returning implemented by the complier?
Explain why c is faster than c++?
What is the auto keyword good for?
What is a sequential access file?
How to delete a node from linked list w/o using collectons?
In which header file is the null macro defined?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above