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 / yogesh bansal
yes, correct answer is 3 3 1
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is pointers in c with example?
Explain what is wrong with this program statement?
Explain how can I convert a string to a number?
How to create struct variables?
what do you mean by enumeration constant?
Write a program to print fibonacci series using recursion?
What is I ++ in c programming?
What is main () in c?
Explain what does the function toupper() do?
Can we change the value of #define in c?
What is 'bus error'?
Why do we use & in c?
Why calloc is better than malloc?
What is strcmp in c?
write an algorithm to display a square matrix.