Advertisement
DarkAtom77

Hello world C89-90, C95

May 27th, 2020
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. /* Hello world program */
  2. /* Languages:
  3.     - C89 (ANSI X3.159-1989)
  4.     - C90 (ISO/IEC 9899:1990/Cor 2:1996)
  5.     - C95 (ISO/IEC 9899:1990/AMD1:1995)
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. int main(void)
  11. {
  12.     puts("Hello world!");
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement