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 is ur strangth & weekness
What is time complexity c?
Why flag is used in c?
Does free set pointer to null?
Who developed c language and when?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Why do we use null pointer?
Where are some collections of useful code fragments and examples?
What is a built-in function in C?
What is openmp in c?
What is the general form of #line preprocessor?
What is the difference between the expression “++a” and “a++”?
What is an endless loop?
Are there constructors in c?