#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
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Explain how do you determine the length of a string value that was stored in a variable?
How can I handle floating-point exceptions gracefully?
What is dangling pointer in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
How many keywords (reserve words) are in c?
What is a static function in c?
How can I write a function that takes a format string and a variable number of arguments?
Can you define which header file to include at compile time?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
How to delete a node from linked list w/o using collectons?
What is the function of this pointer?