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
Write a program to print “hello world” without using semicolon?
How does free() know explain how much memory to release?
What is difference between && and & in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is nested structure in c?
How are pointers declared in c?
How can I delete a file?
#include
Is c still used?
Explain #pragma statements.
Difference between Shallow copy and Deep copy?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Write a program on swapping (100, 50)
How can I avoid the abort, retry, fail messages?