File: Stare vježbe/vjezbe01/01__hello.c

  1. /*
  2.   01__hello.c
  3.   Ispisuje poruku "Hello world"
  4. */
  5.  
  6. #include <stdio.h>
  7.  
  8. int main ()
  9. {
  10. printf ("Hello world!\n");
  11.  
  12. return 0;
  13. }
  14.