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
What are the __date__ and __time__ preprocessor commands?
explain what are actual arguments?
What is the use of void pointer and null pointer in c language?
Between macros and functions,which is better to use and why?
What is preprocessor with example?
how to capitalise first letter of each word in a given string?
What are identifiers c?
What does 3 mean in texting?
What is the use of header files?
Compare array data type to pointer data type
What are predefined functions in c?
What is c++ used for today?
Why do we write return 0 in c?
Can a variable be both const and volatile?
Why enum is used in c?