alaestor

[TEACH_CODE] HelloWorld main.c

Aug 18th, 2021 (edited)
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. // main.c
  2. // A simple hello world program for C
  3.  
  4. #include <stdio.h>
  5.  
  6. int main(void)
  7. {
  8.     printf("Hello, World!\n");
  9.     return 0;
  10. }
  11.  
Add Comment
Please, Sign In to add comment