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 / aa
3 3 1
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
Is malloc memset faster than calloc?
What is pragma in c?
What is maximum size of array in c?
Why header files are used?
Should I learn c before c++?
Which is best book for data structures in c?
What is scope and lifetime of a variable in c?
What is the purpose of clrscr () printf () and getch ()?
Explain b+ tree?
What is a stream in c programming?
What is the use of a ‘ ’ character?
What is the difference between void main and main in c?
Explain the binary height balanced tree?
How can I read/write structures from/to data files?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd