Developpement/23DEV1.1/TPS1/TP01/controle/Canards.c

8 lines
250 B
C
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf(" _ _ _\n_(')< _(o)> _(%c)=\n%c__) %c__) %c__)\n", 0x22, 0x5C, 0x5C, 0x5C);
printf(" (%c_/)\n=(^.^)=\n(%c)_(%c)\n",0x5c,0x22,0x22);
return EXIT_SUCCESS;
}