void main()
{
int i=5;
printf("%d",i+++++i);
}
Answer Posted / shruti
i think it will give a compilation error..
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is switch in c?
Tell us the use of fflush() function in c language?
What does it mean when a pointer is used in an if statement?
What is property type c?
What does double pointer mean in c?
Explain union. What are its advantages?
Explain modulus operator.
What is the use of linkage in c language?
What is a program?
What is table lookup in c?
What is pointers in c with example?
What is clrscr ()?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is modifier & how many types of modifiers available in c?