This commit is contained in:
2023-10-24 15:42:53 +02:00
parent b77fecfee9
commit d770a781f8
6 changed files with 100 additions and 0 deletions

15
DEV1.1/CM1/exo1.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdlib.h>
#include <stdio.h>
int main(void) {
char apostrophe='"';
printf(" {o,o}\n");
printf(" (__(\\");
printf("\n");
printf(" -");
printf("%c",apostrophe);
printf("-");
printf("%c",apostrophe);
printf("-\n");
return EXIT_SUCCESS;
}