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...

WRITE A PROGRAM TO FIND A REVERSE OF TWO NO

Answer Posted / priya

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("\nEnter Two no. ");
scanf("%d%d",&a,&b);
printf("\nBefore Reverse %d%d",a,b);
printf("\nAfter Reverse %d%d",b,a);
getch();
}

Is This Answer Correct ?    2 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to print “hello world” without using semicolon?

1088


How does free() know explain how much memory to release?

1024


What is difference between && and & in c?

1060


Create a simple code fragment that will swap the values of two variables num1 and num2.

1243


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

5908


What is nested structure in c?

1033


How are pointers declared in c?

1019


How can I delete a file?

1022


#include { printf("Hello"); } how compile time affects when we add additional header file .

1866


Is c still used?

1015


Explain #pragma statements.

995


Difference between Shallow copy and Deep copy?

1979


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

1042


Write a program on swapping (100, 50)

1076


How can I avoid the abort, retry, fail messages?

1105