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 / robin
21212121
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
List the difference between a While & Do While loops?
What is formal argument?
Can two or more operators such as and be combined in a single line of program code?
how do you programme Carrier Sense Multiple Access
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What are the scope of static variables?
where are auto variables stored? What are the characteristics of an auto variable?
How can I open files mentioned on the command line, and parse option flags?
Explain two-dimensional array.
What is NULL pointer?
In C, What is the #line used for?
What is c definition?
By using C language input a date into it and if it is right?
When is a void pointer used?