add directory study

This commit is contained in:
gohigh
2024-02-19 00:25:23 -05:00
parent b1306b38b1
commit f3774e2f8c
4001 changed files with 2285787 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#include <stdio.h>
int main(argc, argv)
int argc;
char **argv;
{
int i;
int j;
int atoi();
i = atoi(argv[1]);
while (i--) {
for (j = 1024/(4*16); j; j--) {
printf("123456789012345\n\
%15s\n\
%15d\n\
%15ld\n",
"Test Test", 0x7fff, 0x7fffffffL);
}
}
return 0;
}