Fichiers SAE

This commit is contained in:
SombrAbsol
2024-01-23 14:40:09 +01:00
parent 97ade80903
commit 77b156c0c1
6 changed files with 56 additions and 0 deletions

12
main.c
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char const *argv[])
{
/* creation du tableau contenant toutes les lettres de l'alphabet */
char alphabet[26] = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','T','U','V','X','Y','Z'};
FILE*
return EXIT_SUCCESS;
}