main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / thaslima
11,10,11
| Is This Answer Correct ? | 6 Yes | 33 No |
Post New Answer View All Answers
What are different storage class specifiers in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Write a program to check prime number in c programming?
Which is best book for data structures in c?
Write a program to print “hello world” without using semicolon?
Explain how can I read and write comma-delimited text?
What is pointers in c?
Why C language is a procedural language?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Implement bit Array in C.
What is structure and union in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
When we use void main and int main?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above