Answer Posted / venkatesh sabinkar
#include<stdio.h>
#include<conio.h>
void main()
{
int a=5,b=2,t;
clrscr();
printf("a=%d,b=%d",a,b,b=t,a=b,t=a);
getch();
}
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What are the header files used in c language?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Write a Program to accept different goods with the number, price and date of purchase and display them
write a c program to find the sum of five entered numbers using an array named number
Do array subscripts always start with zero?
Should I learn data structures in c or python?
Write a C program in Fibonacci series.
What is function what are the types of function?
What is the difference between array and structure in c?
How can I ensure that integer arithmetic doesnt overflow?
What are identifiers c?
Write a program to print ASCII code for a given digit.
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Write a factorial program using C.
Is int a keyword in c?