Initial commit

This commit is contained in:
2021-10-01 20:24:05 +02:00
commit 860c025165
194 changed files with 4846 additions and 0 deletions

12
kapitel11/mainarg.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main(int argc, char **argv)
{
int i;
printf("Du har angett %d st argument\n", argc);
for (i = 0; i<argc; i++)
{
printf("Argument %d är: %s\n", i, argv[i]);
}
return 0;
}