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
Why isn't any of this standardized in c? Any real program has to do some of these things.
write a c program in such a way that if we enter the today date the output should be next day's date.
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What does c in a circle mean?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is the scope of local variable in c?
Write programs for String Reversal & Palindrome check
How many types of errors are there in c language? Explain
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Which header file is used for clrscr?
What is a pointer value and address in c?
What are local static variables? How can you use them?
Compare and contrast compilers from interpreters.