#include #include //argc is argument count, ie how many arguments were given //argv is an array of the arguments given //argv[0] is the int main(int argc, string argv[]) { printf("hello, %s\n", argv[1]); }