This commit is contained in:
2026-09-03 07:32:05 +02:00
parent 70b555c774
commit e1ff786464
24 changed files with 1165 additions and 0 deletions
+10
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;
}