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
How do you determine whether to use a stream function or a low-level function?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is type qualifiers?
What is structure in c explain with example?
What is d'n in c?
How can I send mail from within a c program?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Why malloc is faster than calloc?
What is the use of typedef in c?
What is the condition that is applied with ?: Operator?
Where is volatile variable stored?
Why do we use return in c?
What is time complexity c?
What does nil mean in c?
What is class and object in c?