Answer Posted / n.ramesh
#include(stdio.h);
#include(stdlib.h);
void main()
{
int a=10,b=20;
swap(a,b);
a=b&b=a;
printf("%d%d",a,b);
}
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
How many types of operator or there in c?
Write a c program to demonstrate character and string constants?
Does c have function or method?
what does static variable mean?
Give the rules for variable declaration?
Lists the benefits of c programming language?
What is difference between union All statement and Union?
Write a code on reverse string and its complexity.
What are the valid places to have keyword “break”?
Write program to remove duplicate in an array?
What are the different types of control structures?
What is the best organizational structure?
What is New modifiers?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Explain the Difference between the New and Malloc keyword.