Création du dossier exo 2

This commit is contained in:
2023-09-07 16:07:43 +02:00
parent 7b434768f2
commit cc701153e1

10
Exo2/bss_data.c Normal file
View File

@@ -0,0 +1,10 @@
/* segment bss et data */
#define N 1000
int t[N]; /* version 1 */
//int t[N]={1}; /* version 2 */
int main()
{
return 0;
}