Home » C Programming » Floating Point Issues

What will be the output of the program? #include<stdio.h> int main() { float a=0.7; if(a < 0.7f) printf("C\n"); else printf("C++\n"); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!