#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);
}
Answer Posted / kumaravel
chance of providing answer is not possible. empty screen become view.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Define recursion in c.
Difference between linking and loading?
find out largest elemant of diagonalmatrix
What are bitwise shift operators in c programming?
What does c mean?
Can the size of an array be declared at runtime?
Explain setjmp()?
Is array name a pointer?
Why doesn't C support function overloading?
Write a program to print “hello world” without using semicolon?
What is the role of && operator in a program code?
What are the 4 types of unions?
How do you determine a file’s attributes?
What is static identifier?
What is auto keyword in c?