Print constant suffixes and properly print floats.
[cparser] / parsetest / hexfloat.c
1 #include <stdio.h>
2
3 int main(int argc, char *argv[]) {
4         printf("%f\n", 0x1.fp3);
5         return 0;
6 }