please give me answer with details
#include<stdio.h>
main()
{
int i=1;
i=(++i)*(++i)*(++i);
printf("%d",i);
getch();
}
Answer Posted / vaseem
++i * ++i * **i
->
2 3 4
now started this way
<-
4 * 4 * 4
=64
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What is oops c?
What is difference between arrays and pointers?
What is string constants?
Explain what is the difference between text files and binary files?
What are the back slash character constants or escape sequence charactersavailable in c?
What does sizeof int return?
State two uses of pointers in C?
Why c is a mother language?
Why we use void main in c?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
Stimulate calculator using Switch-case-default statement for two numbers
What is structure padding and packing in c?
How do you determine a file’s attributes?
How can you find the day of the week given the date?
Why should I use standard library functions instead of writing my own?