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
The statement, int(*x[]) () what does in indicate?
What is the difference between %d and %i?
Explain what’s a signal? Explain what do I use signals for?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
int far *near * p; means
Is there a built-in function in C that can be used for sorting data?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Explain how can I convert a number to a string?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is #include conio h?
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 the difference between int main and void main?
What are actual arguments?
What is wild pointer in c?
What does int main () mean?