logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/args.c

#include<stdio.h>

//main is a function called by the op system
int main(int argc, char *argv[]) {
  printf("%d\n", argc);
  for(int i=0; i<argc; i++)
    printf("%s\n",argv[i]);
}