Question { 19668 }
what is the output of the following program?
#include
void main()
{
int x=4,y=3,z;
z=x-- -y;
printf("\n%d %d %d",x,y,z);
}
Answer
| Is This Answer Correct ? | 0 Yes | 6 No |
Question { 15472 }
Is main() function predfined or userdefined?
Answer
| Is This Answer Correct ? | 0 Yes | 7 No |