commit
This commit is contained in:
18
CPP/Template.txt
Normal file
18
CPP/Template.txt
Normal file
@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Titre du programme
|
||||
* Par Florian Goussot
|
||||
* BTS CIEL 2e ann<6E>e
|
||||
* Fait le 05/11/2024 <20> Nancy
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <conio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(void) {
|
||||
do {
|
||||
system("cls");
|
||||
printf_s("\t\t\tTitre du programme\n");
|
||||
printf_s("\n\nAppuyez sur Echap pour quitter...");
|
||||
} while (_getch() != 27);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user