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
What are the primitive data types in c?
What is int main () in c?
How can a process change an environment variable in its caller?
Where are some collections of useful code fragments and examples?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is hashing in c language?
What is #define used for in c?
What is #include called?
Explain what are the different data types in c?
Is c still relevant?
What is a sequential access file?
what are enumerations in C
Explain how can I manipulate strings of multibyte characters?
How do you initialize pointer variables?
How can I read and write comma-delimited text?