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 / guest
431
| Is This Answer Correct ? | 13 Yes | 15 No |
Post New Answer View All Answers
What is an array in c?
How main function is called in c?
why return type of main is not necessary in linux
What is wrong with this program statement?
Why does notstrcat(string, "!");Work?
What is #define in c?
What are the modifiers available in c programming language?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
what are the 10 different models of writing an addition program in C language?
Why is c known as a mother language?
What are different storage class specifiers in c?
What are file streams?
Difference between macros and inline functions? Can a function be forced as inline?
What are the types of arrays in c?
What are enumerated types?