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
SORRY YHE OUTPUT WILL BE 3 3 1
| Is This Answer Correct ? | 20 Yes | 4 No |
Post New Answer View All Answers
What is time null in c?
What do you mean by Recursion Function?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
How to set file pointer to beginning c?
How can you find the day of the week given the date?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Explain the advantages and disadvantages of macros.
Write a program to use switch statement.
What are void pointers in c?
Can you add pointers together? Why would you?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What are runtime error?
What is c standard library?
What does return 1 means in c?
What are categories used for in c?