added main.c

This commit is contained in:
MarcUs7i 2025-02-25 19:31:41 +01:00
parent 7cc103f1be
commit 50ba892a18
2 changed files with 11 additions and 1 deletions

View file

@ -1 +1 @@
[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/3PH949Mt)
[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/3PH949Mt)

10
main.c Normal file
View file

@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
int main(char argc, char *argv[]) {
for (int i = 1; i < argc; i++) {
printf("%s\n", argv[i]);
}
return 0;
}