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 / balug
22 21 21 20
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Can a variable be both constant and volatile?
What is the use of pointers in C?
What does & mean in scanf?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What are c preprocessors?
What is the difference between far and near ?
Why is c not oop?
Is null equal to 0 in sql?
Why c is procedure oriented?
Why do we need functions in c?
What is abstract data structure in c?
What is the use of #define preprocessor in c?
What does typedef struct mean?
What is the difference between array_name and &array_name?
How can type-insensitive macros be created?