WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW
IT COME ..
#include<stdio.h>
#include<conio.h>
void main()
{
int k=20;
printf("%d%d%d%d",k,k++,++k,k);
getch();
}
Answer Posted / pratik
but how answer came ? ?
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Can a pointer point to null?
how should functions be apportioned among source files?
What is array of pointers to string?
What is extern variable in c with example?
Are bit fields portable?
Why is c called "mother" language?
What is far pointer in c?
Linked lists -- can you tell me how to check whether a linked list is circular?
What do you understand by friend-functions? How are they used?
When we use void main and int main?
Explain can you assign a different address to an array tag?
What is nested structure in c?
Why do we use stdio h and conio h?
What is the difference between near, far and huge pointers?