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 do you mean by dynamic memory allocation in c? What functions are used?
What is I ++ in c programming?
What is the use of bitwise operator?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What are runtime error?
How can you access memory located at a certain address?
Compare array data type to pointer data type
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
Can a void pointer point to a function?
What is string in c language?
Who is the founder of c language?
What is the use of ?: Operator?
Is c procedural or functional?
How can you find the day of the week given the date?
What is variable and explain rules to declare variable in c?