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 use of c language in real life?
How many parameters should a function have?
Is c dynamically typed?
Explain how are portions of a program disabled in demo versions?
What does int main () mean?
What is clrscr ()?
Does sprintf put null character?
How macro execution is faster than function ?
What are the types of operators in c?
What is the c value paradox and how is it explained?
How do you write a program which produces its own source code as output?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
write a program fibonacci series and palindrome program in c
What is strcpy() function?
Is null always equal to 0(zero)?