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


Please Help Members By Posting Answers For Below Questions

Why #include is used in c language?

584


What is the usage of the pointer in c?

596


Why we write conio h in c?

549


What type of function is main ()?

574


What are the complete rules for header file searching?

657






What is hashing in c?

628


How can a number be converted to a string?

586


What is a constant and types of constants in c?

592


Is printf a keyword?

749


What is static volatile in c?

564


How do you determine the length of a string value that was stored in a variable?

642


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

800


What is a file descriptor in c?

553


What do header files do?

593


How many types of errors are there in c language? Explain

560