Which of the following statement is correct about the code snippet given below?
#include < stdio>
int main()
{
float z = 12.35, c = 10;
if( ++z -z)
c += z;
else
c - = z;
printf( “%f %f”, z, c);
return 0;
}
Answer: A
No answer description available for this question.