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 / amit
331
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Is malloc memset faster than calloc?
Which node is more powerful and can handle local information processing or graphics processing?
How do you define a string?
Can I initialize unions?
Stimulate calculator using Switch-case-default statement for two numbers
Why c is called top down?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is the size of structure in c?
How can you increase the size of a statically allocated array?
show how link list can be used to repersent the following polynomial i) 5x+2
Calculate 1*2*3*____*n using recursive function??
What's the difference between constant char *p and char * constant p?
What are pointers?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What is the use of typedef in structure in c?