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 / shashikanth
20 21 21 22
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the two types of structure?
What is a lookup table in c?
What 'lex' does?
Is there a built-in function in C that can be used for sorting data?
Do variables need to be initialized?
what is the difference between 123 and 0123 in c?
write a program to create a sparse matrix using dynamic memory allocation.
What does 1f stand for?
What is d'n in c?
What is I ++ in c programming?
What are formal parameters?
Why #include is used in c language?
Why main function is special give two reasons?
Explain what is the general form of a c program?
What is difference between %d and %i in c?