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 find the exact size of a data type in c?
What is extern variable in c with example?
Tell us two differences between new () and malloc ()?
What is the use of getch ()?
What is build process in c?
In C, What is the #line used for?
Explain how can I manipulate strings of multibyte characters?
How can you increase the size of a statically allocated array?
Is c high or low level?
What is the purpose of macro in C language?
What are the two types of structure?
When do we get logical errors?
Does c have class?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Write program to remove duplicate in an array?