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.
 
 
 

10 lines
103 B

  1. #!/bin/sh
  2. gcc ex1.c -o ex1.out
  3. echo "10"
  4. ./ex1.out 10
  5. echo "50"
  6. ./ex1.out 50
  7. echo "100"
  8. ./ex1.out 100