Home » C Programming » Floating Point Issues

What will be the output of the program? #include<stdio.h> #include<math.h> int main() { printf("%d, %d, %d\n", sizeof(3.14f), sizeof(3.14), sizeof(3.14l)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!