what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / girish
1,1,3
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
what type of questions arrive in interview over c programming?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is #line used for?
What is the difference between far and near ?
What does node * mean?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What are the advantages of c preprocessor?
Explain the binary height balanced tree?
How to get string length of given string in c?
What is meant by realloc()?
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 && in c programming?
what is stack , heap ,code segment,and data segment
Is c is a procedural language?
Is this program statement valid? INT = 10.50;