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 volatile keyword in c?
what do you mean by inline function in C?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Why do we use null pointer?
What does stand for?
Explain 'far' and 'near' pointers in c.
How do you declare a variable that will hold string values?
What is the mean of function?
Write a program to identify if a given binary tree is balanced or not.
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is pass by reference in functions?
What is dynamic dispatch in c++?
What is dynamic variable in c?
Write a program for finding factorial of a number.
What does c value mean?