Advertisement
DarkAtom77

Hello world C-K&R

May 27th, 2020
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. /* Hello world program */
  2. /* Language: K&R C ("The C Programming Language, First Edition", by Brian Kernighan and Dennis Ritchie, 1978) */
  3.  
  4. main()
  5. {
  6.     printf("Hello world!\n");
  7.     return(0);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement