please give me answer with details
#include<stdio.h>
main()
{
int i=1;
i=(++i)*(++i)*(++i);
printf("%d",i);
getch();
}

Answer Posted / gita

Answer is :64

Is This Answer Correct ?    7 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What happens if you free a pointer twice?

623


If the size of int data type is two bytes, what is the range of signed int data type?

605


Explain the use of 'auto' keyword in c programming?

697


What are terms in math?

602


What is a buffer in c?

586






What does a pointer variable always consist of?

676


Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.

1578


Function calling procedures? and their differences? Why should one go for Call by Reference?

643


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1502


Why do we use int main instead of void main in c?

634


Write the test cases for checking a variable having value in range -10.0 to +10.0?

1833


What's the right way to use errno?

635


What is the use of a static variable in c?

602


I have a varargs function which accepts a float parameter?

591


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

656