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 is the benefit of using const for declaring constants?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Explain the difference between null pointer and void pointer.
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Define and explain about ! Operator?
What are the types of type specifiers?
Are bit fields portable?
Why does notstrcat(string, "!");Work?
What are examples of structures?
what is the different bitween abap and abap-hr?
How do I send escape sequences to control a terminal or other device?
What is the explanation for modular programming?
What is a lookup table in c?
Why we use break in c?
application attempts to perform an operation?