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 the usage of pointer in c?
What are the different types of constants?
Can we declare variables anywhere in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
write a program to find out prime number using sieve case?
how to introdu5ce my self in serco
What are data types in c language?
What are the types of arrays in c?
What is the right way to use errno?
What is difference between function overloading and operator overloading?
What do you understand by normalization of pointers?
How can I find out the size of a file, prior to reading it in?
Is null always equal to 0(zero)?
How can I make sure that my program is the only one accessing a file?