Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#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 / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define recursion in c.

1288


Explain is it valid to address one element beyond the end of an array?

1221


How can I invoke another program or command and trap its output?

1099


Does c have function or method?

1007


What is a class c rental property?

1102


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3729


What does printf does?

1254


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

2327


Write a program to print factorial of given number without using recursion?

996


Can you define which header file to include at compile time?

1022


Why do some versions of toupper act strangely if given an upper-case letter?

1078


Why enum is used in c?

964


Why does everyone say not to use gets?

1109


Do you know the difference between exit() and _exit() function in c?

1062


Can a program have two main functions?

1131