University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. #include <stdio.h>
  2. int main(int argc, char** argv)
  3. {
  4. if (argc != 2)
  5. {
  6. printf("Usage: %s <string>\n", argv[0]);
  7. return 1;
  8. }
  9. puts(argv[1]);
  10. return 0;
  11. }