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 / shashikant
20,20,22,22
| Is This Answer Correct ? | 2 Yes | 15 No |
Post New Answer View All Answers
What does struct node * mean?
What does %c mean in c?
What are the rules for identifiers in c?
Why malloc is faster than calloc?
Find MAXIMUM of three distinct integers using a single C statement
What is variable in c example?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
will u please send me the placement papers to my mail???????????????????
What is the use of bitwise operator?
Is fortran still used in 2018?
What is the explanation for the dangling pointer in c?
What is the significance of c program algorithms?
What is the use of define in c?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
Why is not a pointer null after calling free?