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


Please Help Members By Posting Answers For Below Questions

What is class and object in c?

583


What is c preprocessor mean?

781


Explain how can you tell whether two strings are the same?

580


Can two or more operators such as and be combined in a single line of program code?

801


What are dangling pointers in c?

633






What is volatile variable in c with example?

581


Do you know pointer in c?

579


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

1572


What is a example of a variable?

542


Why main function is special give two reasons?

940


What is structure and union in c?

594


Are pointers integer?

543


what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above

665


What is meant by type specifiers?

654


How can I use a preprocessorif expression to ?

594