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 / ramesh
Here i like to say one think,dont allow different answer,if
its correct you may do this.so many of them taking to
verify or knowing the answer.so allow only the answer which
are correct.dont allow any wrong any answers for all the
questions.because it is very using in right time should not
make confuse others.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is typedef?
what will be the output for the following main() { printf("hi" "hello"); }
What is a volatile keyword in c?
What is wrong with this program statement? void = 10;
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is sorting in c plus plus?
What is a #include preprocessor?
What is the correct code to have following output in c using nested for loop?
How do I get an accurate error status return from system on ms-dos?
What is void main () in c?
What are the uses of a pointer?
Explain the ternary tree?
What does c in a circle mean?
What is pointer and structure in c?
What is restrict keyword in c?