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 does 3 mean in texting?
Differentiate between declaring a variable and defining a variable?
What are the 32 keywords in c?
What is a memory leak? How to avoid it?
Is sizeof a keyword in c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Why do we use c for the speed of light?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
what are the 10 different models of writing an addition program in C language?
Write a program to check armstrong number in c?
Can you think of a logic behind the game minesweeper.
Why structure is used in c?
What is return type in c?
Which built-in library function can be used to match a patter from the string?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?