Home » Categories » Technical » What will be the value of x, y, z?
What will be the value of x, y, z?
0
What will be the value of x, y, z?

main( )
{
int x,y, z;
x=2;
y=5;
z= x+++y;
printf("%d %d %d", x, y z);
}


a.3 5 7
b.7 8 9
c.4 2 8
d.1 3 5
 
Asked By : Hari Categories : TechnicalCProgramming
  Answer:   a. 3 5 7
Post Your Answer
Previous Question
Next Question
Related Questions