vinay.k


{ City } hyd
< Country > india
* Profession * student
User No # 51405
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 2
Users Marked my Answers as Wrong # 1
Questions / { vinay.k }
Questions Answers Category Views Company eMail




Answers / { vinay.k }

Question { 15914 }

what is the output of the following program?
#include
void main()
{
int x=4,y=3,z;
z=x-- -y;
printf("\n%d %d %d",x,y,z);
}


Answer

yes answer is 3 3 1.

Is This Answer Correct ?    2 Yes 0 No

Question { Satyam, 9075 }

main()
{
float a=3.2e40;
printf("%d",a);
}


Answer

it is not execute, bcz in the printf satement declared as
integer so answer is 0.

Is This Answer Correct ?    0 Yes 1 No