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
Write a program to show the change in position of a cursor using c
Explain how can I prevent another program from modifying part of a file that I am modifying?
Explain function?
What would be an example of a structure analogous to structure c?
Do you know the use of 'auto' keyword?
Why do some versions of toupper act strangely if given an upper-case letter?
Is null valid for pointers to functions?
What are the functions to open and close file in c language?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is the difference between array and structure in c?
Why do we use int main?
Why does this code crash?
What is the use of clrscr?
When should volatile modifier be used?
What is difference between stdio h and conio h?