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 / pratik.nikam3112
answer is
22 21 21 20
| Is This Answer Correct ? | 38 Yes | 8 No |
Post New Answer View All Answers
How does free() know explain how much memory to release?
Explain what is wrong with this program statement? Void = 10;
What are file streams?
code for quick sort?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Explain a file operation in C with an example.
What are keywords c?
Explain which function in c can be used to append a string to another string?
Differentiate between a for loop and a while loop? What are it uses?
Why is python slower than c?
What are the types of data structures in c?
What do you mean by c what are the main characteristics of c language?
What are local static variables? How can you use them?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is the use of putchar function?