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
What is operator promotion?
code for find determinent of amatrix
How can I access an I o board directly?
What is scope and lifetime of a variable in c?
Distinguish between actual and formal arguments.
What header files do I need in order to define the standard library functions I use?
If you know then define #pragma?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is a macro in c preprocessor?
Explain what are the different file extensions involved when programming in c?
The difference between printf and fprintf is ?
What is New modifiers?
Why doesnt this code work?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34