Files
DEV/DEV1.1/CM1/exo1.c

15 lines
258 B
C
Raw Normal View History

2023-10-24 15:42:53 +02:00
#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;
}