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
What are the types of unary operators?
what value is returned to operating system after program execution?
What is structure packing in c?
why wipro wase
Explain what does a function declared as pascal do differently?
Why does not c have an exponentiation operator?
How can a program be made to print the name of a source file where an error occurs?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is difference between scanf and gets?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is the use of volatile?
Explain two-dimensional array.
What is the advantage of an array over individual variables?
What is hash table in c?
When should a far pointer be used?