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 / ramu
22 21 22 22
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Subtract Two Number Without Using Subtraction Operator
What are the types of assignment statements?
What is the use of sizeof () in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Explain the difference between getch() and getche() in c?
What is a volatile keyword in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What are type modifiers in c?
Can you please compare array with pointer?
What is FIFO?
What is type qualifiers?
What are multibyte characters?
What are the uses of null pointers?
What is oops c?
What is malloc calloc and realloc in c?