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 / gaurav
3 3 4
| Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
Why calloc is better than malloc?
What is the difference between int main and void main?
The difference between printf and fprintf is ?
How can you find the exact size of a data type in c?
Who is the founder of c language?
write a program to concatenation the string using switch case?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Write a program to print factorial of given number using recursion?
List the difference between a While & Do While loops?
What is the heap?
What header files do I need in order to define the standard library functions I use?
What is a structure and why it is used?
write a program to display all prime numbers
Can we use visual studio for c?
Stimulate calculator using Switch-case-default statement for two numbers