forked from PBYetml/EMSY_TP1_Source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEMSY_TP1.c
More file actions
26 lines (23 loc) · 679 Bytes
/
EMSY_TP1.c
File metadata and controls
26 lines (23 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//-----------------------------------------------------------------------------------//
// Nom du projet : EMSY TP1
// Nom du fichier : EMSY_TP1.c
// Date de création : 27.09.2024
// Date de modification : xx.xx.20xx
//
// Auteur : Philou (Ph. Bovey)
//
// Version : 0.1
//
// Description :
//
//
// Remarques :
//----------------------------------------------------------------------------------//
//--- librairie standart ---//
#include <stdio.h> // pour usage printf et scanf_s
// Nouveauté du VC++ 2005, 2008, 2010 et 2015 : le scanf_s remplace scanf
//-- programme principale --//
int main(void)
{
return(0);
}