What will be the output of the following program
#include<stdio.h>
void main()
{
int i=20;
i-=i+++++i++;
printf("%d",i);
}
Answer Posted / suji
THE PROGRAM DOES NOT RETURN ANY THING.. IT WILL SHOW THE ERROR
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
Explain the difference between malloc() and calloc() in c?
What are reserved words?
Can we declare function inside main?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What are 3 types of structures?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What are the applications of c language?
Can you please explain the scope of static variables?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What are the types of functions in c?
What is the use of volatile?
Is it cc or c in a letter?
How can a process change an environment variable in its caller?
What is a macro in c preprocessor?
Explain how can I avoid the abort, retry, fail messages?