tuxmartin

Hello World!

May 13th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.     int ret;
  5.    
  6.     ret = printf("Hello, world!\n");
  7.    
  8.     if (ret < 0) {
  9.         return -1;
  10.     } else {
  11.         return 0;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment