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 oops c?
How do you search data in a data file using random access method?
Can you add pointers together? Why would you?
What is the use of a ‘ ’ character?
How can you invoke another program from within a C program?
How does pointer work in c?
How do we declare variables in c?
What is the explanation for cyclic nature of data types in c?
what are enumerations in C
What is unary operator?
The difference between printf and fprintf is ?
what are the 10 different models of writing an addition program in C language?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Differentiate abs() function from fabs() function.
Explain about the functions strcat() and strcmp()?