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 / aa
3 3 1
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
Why c is called free form language?
What does == mean in texting?
write a program to find the given number is prime or not
Explain indirection?
What are derived data types in c?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Write a program which returns the first non repetitive character in the string?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What are different types of operators?
Tell me is null always defined as 0(zero)?
How many header files are in c?
What is main return c?
What is function pointer c?
Explain what is the difference between far and near ?
number of times a digit is present in a number