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 would you rename a function in C?
What does volatile do?
What is a function in c?
Explain what are the __date__ and __time__ preprocessor commands?
What is the sizeof () a pointer?
Which is the memory area not included in C program? give the reason
Explain what are the standard predefined macros?
What does d mean?
What is maximum size of array in c?
Can you write the function prototype, definition and mention the other requirements.
What is the difference between int main and void main?
Define and explain about ! Operator?
Are pointers really faster than arrays?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain the difference between the local variable and global variable in c?