ajout tp1

This commit is contained in:
2025-09-02 17:14:06 +02:00
parent c37cf9fa91
commit ba53be1bc3
23 changed files with 1097 additions and 0 deletions

10
tp/tp1/src/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;
}