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
State two uses of pointers in C?
Explain the difference between #include "..." And #include <...> In c?
Write a C program in Fibonacci series.
What is the meaning of && in c?
What are structures and unions? State differencves between them.
Is it valid to address one element beyond the end of an array?
Write a program to find the biggest number of three numbers in c?
How can I implement sets or arrays of bits?
What are the differences between Structures and Arrays?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Explain Function Pointer?
What are the 3 types of structures?
What is the use of bitwise operator?
What is identifier in c?
Difference between strcpy() and memcpy() function?