Files
university/S1/GdCP/uebung/chars.c
2025-04-28 16:59:44 +02:00

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;
}