Advertisement
DarkAtom77

Hello world C99, C11, C17, C2x

May 27th, 2020
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. // Hello world program
  2. /* Language:
  3.     - C99 (ISO/IEC 9899:1999/Cor 3:2007)
  4.     - C11 (ISO/IEC 9899:2011/Cor 1:2012)
  5.     - C18 (ISO/IEC 9899:2018)
  6.     - [upcoming] C2x
  7. */
  8.  
  9. #include <stdio.h>
  10.  
  11. int main(void)
  12. {
  13.     puts("Hello world!");
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement