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 / vijay
20 21 20 20
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
What are linked lists in c?
What is a loop?
What is the difference between array and pointer?
What is null pointer in c?
Write a program to swap two numbers without using third variable?
What is function prototype in c language?
Is c is a procedural language?
List some basic data types in c?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
c program to compute AREA under integral
What is a program flowchart and how does it help in writing a program?
What is bubble sort in c?
code for replace tabs with equivalent number of blanks
How do I create a directory? How do I remove a directory (and its contents)?
what are the 10 different models of writing an addition program in C language?