Question:What will be output if you will compile and execute the following c code?#include<stdio.h>int main(){ float f=3.4e39; printf("%f",f); return 0;}
A 3.4e39 B 3.40000… C +INF D Compiler error E Run time error
+ AnswerC
+ Report