Blame | Last modification | View Log | RSS feed
#include <stdio.h>
#include <float.h>
int main(){
double a = DBL_MAX;
double b = DBL_MAX;
printf("hello world %f\n",DBL_MAX*2);
return 0;
}