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
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is a stream in c programming?
If null and 0 are equivalent as null pointer constants, which should I use?
code for replace tabs with equivalent number of blanks
What is calloc in c?
What are the key features in c programming language?
What is the difference between call by value and call by reference in c?
What are the 32 keywords in c?
C language questions for civil engineering
What is unsigned int in c?
What are the types of pointers?
What is header file definition?
What is the purpose of sprintf() function?
How can I manipulate strings of multibyte characters?
What are static variables in c?