What will be the output of the given program?
#include <stdio.h>
    void main()
    {
        double x = 132457689.23;
        int y = x;
        printf("%d\n", y);
        printf("%lf\n", y);
    }


Posted on by