Home » C Programming » Floating Point Issues

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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!