This commit is contained in:
2025-04-21 00:40:30 +02:00
parent 9ccc21edde
commit b8c75fc6d3
87 changed files with 2788 additions and 99 deletions

12
S1/GdCP/chars.c Normal file
View File

@@ -0,0 +1,12 @@
#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;
}