#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

Can variables be declared anywhere in c?

0 Answers  


State two uses of pointers in C?

0 Answers   Aspire, Infogain,


Why clrscr is used after variable declaration?

0 Answers  


what is the difference between auto and static keywords

1 Answers   cDot, College School Exams Tests, TCS,


how can f be used for both float and double arguments in printf? Are not they different types?

0 Answers  






list the no of files created when c source file is compiled

9 Answers   TCS,


What compilation do?

7 Answers   Geometric Software, Infosys,


What are the 4 types of programming language?

0 Answers  


Which is best linux os?

0 Answers  


List the difference between a "copy constructor" and a "assignment operator"?

0 Answers   Accenture,


How do I copy files?

0 Answers  


What is the c language function prototype?

0 Answers  


Categories