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 ? | 3 Yes | 4 No |
Post New Answer View All Answers
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Explain what are run-time errors?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is the c language function prototype?
What is c++ used for today?
What is multidimensional arrays
What are reserved words with a programming language?
What is the difference between int main and void main in c?
What is %lu in c?
What are the advantages of union?
What is the purpose of clrscr () printf () and getch ()?
What is the use of function overloading in C?
What does the c preprocessor do?
How can I split up a string into whitespace-separated fields?
What are the advantages of using macro in c language?