Answer Posted / suresh
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
d=0;
printf("enter a");
scanf("%d",&a);
printf("enter b");
scanf("%d",&b);
c=a;
a=b;
b=c;
printf("a & b value are%d%d",a,b);
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Linked lists -- can you tell me how to check whether a linked list is circular?
What is const volatile variable in c?
Do you know the use of 'auto' keyword?
Where local variables are stored in c?
What is the importance of c in your views?
Why c is a mother language?
Is boolean a datatype in c?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What are # preprocessor operator in c?
What is the purpose of main( ) in c language?
What is a function simple definition?
Do you know pointer in c?
How pointers are declared?
Is c# a good language?