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 / sudarshan
4 3 1
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What does dm mean sexually?
What is an endless loop?
What is the purpose of 'register' keyword?
Why pointers are used?
Can we declare a function inside a function in c?
What is the explanation for cyclic nature of data types in c?
How many levels deep can include files be nested?
What are the types of arrays in c?
Can include files be nested?
What is the use of header?
What is a file descriptor in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is storage class?
What is the right type to use for boolean values in c? Is there a standard type?
What does void main return?