void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / swetha
232
| Is This Answer Correct ? | 8 Yes | 8 No |
Post New Answer View All Answers
How can I invoke another program or command and trap its output?
Where are some collections of useful code fragments and examples?
What is integer constants?
How do I copy files?
Why is c so popular?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Why header file is used in c?
Explain how can you tell whether a program was compiled using c versus c++?
Where static variables are stored in memory in c?
What is void c?
Can a local variable be volatile in c?
What is structure in c definition?
Explain pointer. What are function pointers in C?
main() { printf("hello"); fork(); }
Explain the use of bit fieild.