Guest User

Untitled

a guest
Jun 13th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. /*
  2. * File: hw0.c
  3. * Description: print string to stdout
  4. * Author: pcyu16
  5. * Class: 103C
  6. */
  7. #include <stdio.h>
  8.  
  9. int main()
  10. {
  11. puts("Hello TA!!");
  12. return 0;
  13. } // end of main
Add Comment
Please, Sign In to add comment