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 / vignesh1988i
the output will be 3 3 0
thank u
| Is This Answer Correct ? | 5 Yes | 18 No |
Post New Answer View All Answers
write a program to print data of 5 five students with structures?
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
How was c created?
Can you write a programmer for FACTORIAL using recursion?
What does d mean?
How can I sort a linked list?
Process by which one bit pattern in to another by bit wise operation is?
Ow can I insert or delete a line (or record) in the middle of a file?
Explain the priority queues?
What is equivalent to ++i+++j?
Can we declare a function inside a function in c?
code for find determinent of amatrix
What is structure in c language?
If null and 0 are equivalent as null pointer constants, which should I use?
Write program to remove duplicate in an array?