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

Answers were Sorted based on User's Feedback



Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10..

Answer / kuldeep singh

undefined function call as ctrcpy() and , missing in
function strcmp()
after editing we get 0 answer............

Is This Answer Correct ?    4 Yes 1 No

Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10..

Answer / vikram

the question is not correctly written;
undefined ctrcpy,no commas,no header file stdio.h;
if it is correctly written,then the output will be 0 since
the strings efghabcd match and we know that strcmp returns 0
if the two strings match

Is This Answer Correct ?    3 Yes 0 No

Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10..

Answer / santhoo035

if u write the write the code as i=strcmp(strcat(s3,ctrcpy
(s2,s1)),strcat(s3,"abcd")); then it will print 0

Is This Answer Correct ?    4 Yes 2 No

Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10..

Answer / guest

Syntax error at line strcmp.....

Is This Answer Correct ?    2 Yes 2 No

Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10..

Answer / ayyanar.m

garbage

Is This Answer Correct ?    0 Yes 0 No

Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10..

Answer / rishab

Answer is 0, if you will correct the syntax

Is This Answer Correct ?    0 Yes 0 No

Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10..

Answer / jitendra kumar arya

c)0

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Interview Questions

what is the difference between exit() and _exit() functions?

2 Answers  


What does %2f mean in c?

0 Answers  


can we define a function in structure?

2 Answers  


What is the use of volatile?

0 Answers  


What are qualifiers in c?

0 Answers  






Software Interview Questions

1 Answers   CAT,


Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?

8 Answers   Mascot, TCS,


which is faster execution: loops or recursion?

3 Answers  


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


What is the difference between procedural and functional programming?

0 Answers  


Write a program to print factorial of given number without using recursion?

0 Answers  


c program for searching a student details among 10 student details

0 Answers  


Categories