what is the output of the following program?
#include<stdio.h>
void main()
{
int x=4,y=3,z;
z=x-- -y;
printf("\n%d %d %d",x,y,z);
}
Answer Posted / sudarshan
4 3 -1 this will be the output of this program
| Is This Answer Correct ? | 0 Yes | 17 No |
Post New Answer View All Answers
What is hashing in c language?
Explain heap and queue.
In a byte, what is the maximum decimal number that you can accommodate?
What is the difference between variable declaration and variable definition in c?
What is function what are the types of function?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is far pointer in c?
Explain the difference between #include "..." And #include <...> In c?
What is extern storage class in c?
Suggesting that there can be 62 seconds in a minute?
What's a good way to check for "close enough" floating-point equality?
What is the description for syntax errors?
What is extern variable in c with example?
Why clrscr is used after variable declaration?