#include<stdio.h>
#include<conio.h>
# define swap(a,b) temp=a; a=b; b=temp;
void main( )
{
int i, j, temp;
i=5;
j=10;
temp=0;
if( i > j)
swap( i, j );
printf( "%d %d %d", i, j, temp);
}

Answers were Sorted based on User's Feedback



#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / rohit751

Hi all...the main mistake in the program is using the semi
colons in the macro definition. Try this..
#include<stdio.h>
#include<conio.h>
# define swap(a,b) temp=a, a=b, b=temp;
void main( )
{
int i, j, temp;
i=5;
j=10;
temp=0;
if( i < j)
swap( i, j );
printf( "%d %d %d", i, j, temp);
}

Is This Answer Correct ?    10 Yes 0 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / ashish rajvanshi

My dear frnds its a simple question
here the code of macro inserted in the program at the time of preprocessing and then the calculation will performed.
and then it will be calculated.

void main()
{
int i,j, temp;
i=5;
j=10;
temp=0;
if(i>j)
temp=a;
a=b;
b=temp;
printf("%d %d %d" , i , j , temp);
}

for further detail contect at(ashish.raj.mrt@gmail.com)

Is This Answer Correct ?    3 Yes 1 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / vinodhini

The output will be
5100

Is This Answer Correct ?    2 Yes 0 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / ashishrajvanshi01

On compiling i got ans 10, 0, 0. I did not understand the concept. Please expalin this to me.

Is This Answer Correct ?    5 Yes 4 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / harish

it enters into swap function only when i>j.

but i contains 5 and j contains 10.

can u plz explain this

Is This Answer Correct ?    0 Yes 0 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / abhijeet

my frnd, C is dumb compiler. It doesn't know what actually
we mean.
Here, in this program, we have defined 1 macro. Ok
this macro wil be inserted and expanded into code.
this gives the unpredicted result. U try and find out what i
mean to say.

Is This Answer Correct ?    1 Yes 1 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / shweta

#include<stdio.h>
#define fun(a) #a#a#a
void main(){
printf("%u",fun(5+9));
}

Is This Answer Correct ?    1 Yes 1 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / kumaravel

chance of providing answer is not possible. empty screen become view.

Is This Answer Correct ?    0 Yes 0 No

#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void mai..

Answer / manish soni tagore collage jai

my dear frd....
here some hapen.
#define swap(a,b) temp=a;a=b;b=temp;----------(1)
is was as function of swap two no;(but it is differnt frm
funtion.)
so
at i>j;
enter swap(i,j);
so jump at eq(n) ---(1) and call swap function'
and


temp=5;


i=10;
j=0;

you see three variable.
but it printf i,j to convert swap.
bcoz it have two arguments.
and print temp=0;
becoz temp have 0;

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More C Interview Questions

What is putchar() function?

0 Answers  


Is there a way to jump out of a function or functions?

0 Answers  


When would you use a pointer to a function?

0 Answers  


Explain how do you declare an array that will hold more than 64kb of data?

0 Answers  


Is flag a keyword in c?

0 Answers  






#&#8206;include&#8236;<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }

2 Answers   Facebook,


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


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

2 Answers  


write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?

1 Answers  


Explain how can I make sure that my program is the only one accessing a file?

0 Answers  


Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"

15 Answers   Accenture,


write a recursive program in'c'to find whether a given five digit number is a palindrome or not

2 Answers  


Categories