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 / priyanka
20,20,21,20
| Is This Answer Correct ? | 5 Yes | 20 No |
Post New Answer View All Answers
how should functions be apportioned among source files?
Why is sizeof () an operator and not a function?
Describe how arrays can be passed to a user defined function
Explain the array representation of a binary tree in C.
What’s the special use of UNIONS?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Explain what happens if you free a pointer twice?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What does static variable mean in c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Do character constants represent numerical values?
What is the difference between #include
What is the difference between array and pointer?
Why main is not a keyword in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above