What will be output of the program?

#include <stdio.h>
#include <conio.h>
 
void main()
{
    float n = 1.67;
    printf("%e, ", n);
    printf("%f, ", n);
    printf("%g, ", n);
    printf("%lf, ", n);
     
    getch();
}

 

Suy nghĩ trả lời câu hỏi trước khi xem đáp án

ATNETWORK
ZUNIA9