Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #8275: printf_test.c

File printf_test.c, 108 bytes (added by tobiashm, 2 years ago)

Simple C program to test rounding floats

Line 
1 #include <stdio.h>
2 #include <stdarg.h>
3
4 main()
5 {
6         printf("%01.2f\n", 31.825);
7         printf("%01.2f\n", 32.825);
8 }