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 / kartik
hi friends upto me....
X=4
Y=3
Z=0
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Compare array data type to pointer data type
Explain what is the difference between the expression '++a' and 'a++'?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
given post order,in order construct the corresponding binary tree
What is structure padding and packing in c?
Is it possible to have a function as a parameter in another function?
In C language what is a 'dangling pointer'?
Do you know null pointer?
What is const and volatile in c?
What is #line used for?
What are the different types of linkage exist in c?
What are the various types of control structures in programming?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is difference between union All statement and Union?
How do we open a binary file in Read/Write mode in C?