Answer Posted / aruna.r
#include<stdio.h>
#include<conio.h>
void main()
{
int a=6;
int b=5;
int temp;
temp=a;
a=b;
b=temp;
printf("a & b value %d,%d",a,b);
getch();
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How can you allocate arrays or structures bigger than 64K?
List some of the static data structures in C?
What are the disadvantages of a shell structure?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is c basic?
What is formal argument?
What is wrong with this declaration?
What is ambagious result in C? explain with an example.
Is anything faster than c?
What is equivalent to ++i+++j?
What is #define in c?
What is the difference between malloc() and calloc()?
How can I implement sets or arrays of bits?
What is selection sort in c?
What are predefined functions in c?