What's the command to output whatever is in a file.

E.G. if there is a text file called hello.c. And if enter at the terminal:

Code:
kregg@vbf: ~ ???????? hello.c
It would come up, as an example, the contents of the file

c Code:
  1. #include <stdio.h>
  2.  
  3. int main
  4. {
  5.            printf("Hello goons");
  6.            return 0;
  7. }

Thanks to anyone who can be bothered to tell me.