mirror of
https://gitlab.gwdg.de/j.hahn02/university.git
synced 2026-01-01 06:44:25 -05:00
13 lines
196 B
C
13 lines
196 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <limits.h>
|
|
#include "float.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
printf("%f", DBL_MIN);
|
|
int a = 1;
|
|
printf("%d", a);
|
|
return EXIT_SUCCESS;
|
|
}
|