void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / gowthamraj
244
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I do serial ("comm") port I/O?
What does sizeof return c?
Explain what is the heap?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Explain the difference between getch() and getche() in c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
Do you know null pointer?
Explain what header files do I need in order to define the standard library functions I use?
Here is a neat trick for checking whether two strings are equal
What is sizeof in c?
What does %2f mean in c?
How can you invoke another program from within a C program?
What is pre-emptive data structure and explain it with example?
Are enumerations really portable?
Between macros and functions,which is better to use and why?