5 lines
105 B
Bash
5 lines
105 B
Bash
|
#!/bin/bash
|
||
|
gcc -Wall -Werror test.c
|
||
|
./a.out < input.txt > output.txt
|
||
|
diff correct_output.txt output.txt
|