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
What is getch c?
What is fflush() function?
What is the significance of an algorithm to C programming?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How many types of errors are there in c language? Explain
Differentiate between static and dynamic modeling.
Implement bit Array in C.
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
write a c program for swapping two strings using pointer
Can you add pointers together? Why would you?
Explain how does free() know explain how much memory to release?
What should malloc() do?
What is a void pointer? When is a void pointer used?
What does the file stdio.h contain?
What are the different file extensions involved when programming in C?