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
What does a pointer variable always consist of?
What was noalias and what ever happened to it?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
How can I discover how many arguments a function was actually called with?
while initialization of array why we use a[][2] why not a[2][]...?
How to establish connection with oracle database software from c language?
If errno contains a nonzero number, is there an error?
What is dynamic memory allocation?
I need a sort of an approximate strcmp routine?
Is c language still used?
What does c mean?
Why & is used in scanf in c?
What is the hardest programming language?
What is c variable?
How would you obtain the current time and difference between two times?