a.out is the default name for executables. You can run it by running ./a.out Alternatively, run gcc -o hello.c hello to name your executable "hello".
./a.out
gcc -o hello.c hello