what is the output of the following program?
{
int x = 19, y = 6, z;
float w;
z = x%y;
w = x/y;
printf("value of z and w %d and %f respectively",z,w);
return 0;
}
Answers
Answered by
0
Answer:
I don't now your answer
Similar questions