#define swap1(a,b) a=a+b;b=a-b;a=a-b;
main()
{
int x=5,y=10;
swap1(x,y);
printf("%d %d\n",x,y);
swap2(x,y);
printf("%d %d\n",x,y);
}

int swap2(int a,int b)
{
int temp;
temp=a;
b=a;
a=temp;
return;
}

what are the outputs?

Answers were Sorted based on User's Feedback



#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\..

Answer / goodhunter

10 5
10 5

Is This Answer Correct ?    20 Yes 2 No

#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\..

Answer / jaroosh

Result of the above program will probably be sth like :
compile error `return' with no value, in function returning
non-void
or
function swap2(...) should return a non-void value.
thats because from the erroneous code YOU CANT PREDICT what:
return;
in swap2 function was about to return.
It may sound that Im picking, but as an interviewer myself,
I have to say it is CRUCIAL on an interview to pinpoint
errors in the code, NEVER assume that its just a
misspelling, some of those errors are, some of them aren't
and are there to check if you read code thoroughly, its
always better to point such things.

Assuming the code was right and the swap2 signature was
void swap2(int a, int b)
code result will be :
10 5
10 5
switching values of a and b in swap2 doesnt affect x and y
values in program because they are being passed BY VALUE to
swap2.

Is This Answer Correct ?    7 Yes 2 No

#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\..

Answer / mannucse

10 5
5 10

Is This Answer Correct ?    9 Yes 10 No

#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\..

Answer / chitra

10 5
5 5

Is This Answer Correct ?    3 Yes 9 No

Post New Answer

More C Interview Questions

What is the use of in c?

0 Answers  


What are called c variables?

0 Answers  


why the execution starts from main function

9 Answers  


what is the stackpointer

2 Answers  


Can we assign integer value to char in c?

0 Answers  






What is a memory leak in structures? How can we rectify that?

2 Answers  


What are the languages are portable and platform independent?Why they are like that?

1 Answers   Excel, Satyam,


can we initialize all the members of union?

2 Answers  


How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?

2 Answers  


n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }

7 Answers   Wipro,


write a program to generate 1st n fibonacci prime number

12 Answers  


What is an arrays?

0 Answers  


Categories