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 are the scope of static variables?
Can you please explain the difference between syntax vs logical error?
What is static function in c?
How are portions of a program disabled in demo versions?
What is mean by data types in c?
Write a program to print factorial of given number without using recursion?
What are static variables in c?
What is the purpose of main( ) in c language?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Explain the red-black trees?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is getch() function?
Is sizeof a keyword in c?
What is the difference between new and malloc functions?
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