void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / nagaraju
332
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is volatile variable in c with example?
Why void is used in c?
How do you view the path?
What is c++ used for today?
What are local static variables? How can you use them?
How can I do graphics in c?
What is spaghetti programming?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What are the ways to a null pointer can use in c programming language?
Do you know the use of 'auto' keyword?
State the difference between x3 and x[3].
Is javascript written in c?
What are the types of unary operators?
Write the Program to reverse a string using pointers.