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 is NULL pointer?
Explain what are the __date__ and __time__ preprocessor commands?
What are preprocessor directives in c?
What is the difference between a function and a method in c?
How can I read a binary data file properly?
Which type of language is c?
What functions are used in dynamic memory allocation in c?
Differentiate between new and malloc(), delete and free() ?
Explain what is #line used for?
What is time complexity c?
List the difference between a "copy constructor" and a "assignment operator"?
What does static variable mean in c?
write a program in c language to print your bio-data on the screen by using functions.
What is extern keyword in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given