void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / anush
442
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is the difference between printf and scanf )?
What is the 'named constructor idiom'?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Can you write the function prototype, definition and mention the other requirements.
Why is it that not all header files are declared in every C program?
Explain what math functions are available for integers? For floating point?
Explain Basic concepts of C language?
Why functions are used in c?
Describe the steps to insert data into a singly linked list.
What is volatile variable in c?
What is variable in c example?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is a function simple definition?
How are portions of a program disabled in demo versions?
Why do we need a structure?