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

A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

650


Explain how can I remove the trailing spaces from a string?

630


What is sizeof array?

616


What is bash c?

562


Is python a c language?

555






What is malloc calloc and realloc in c?

673


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1624


When should volatile modifier be used?

558


which is an algorithm for sorting in a growing Lexicographic order

1401


Why we use stdio h in c?

587


Write a program to check whether a number is prime or not using c?

578


What are the __date__ and __time__ preprocessor commands?

576


what is the role you expect in software industry?

1660


Do pointers need to be initialized?

569


Write a code to determine the total number of stops an elevator would take to serve N number of people.

735