Changement de disposition

This commit is contained in:
2023-09-14 15:12:21 +02:00
parent 598495d9f0
commit d8f9b69558
20 changed files with 2 additions and 2 deletions

10
TP1/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;
}