Q. What will be the output of the following C code?
Code:
#include <stdio.h>
void main()
{
double n = 23458965.12124;
int m = n;
printf("%d", m);
printf(" %lf", m);
}
β
Correct Answer: (A)
23458965, 0.000000