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
What is a lvalue
what is the difference between class and unio?
Why is c called c not d or e?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is typedef struct in c?
How can type-insensitive macros be created?
What is the difference between procedural and functional programming?
How do you determine whether to use a stream function or a low-level function?
Are there any problems with performing mathematical operations on different variable types?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What is d'n in c?
What will be your course of action for a push operation?
What is meant by int main ()?
What are conditional operators in C?
What does %p mean?