Home » C Programming » Floating Point Issues

What will be the output of the program? #include<stdio.h> int main() { float d=2.25; printf("%e,", d); printf("%f,", d); printf("%g,", d); printf("%lf", d); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!