jazykc  2013.3
upoljazykc
 All Classes Files Functions Variables Typedefs Macros Pages
hello-world.c
Go to the documentation of this file.
1 
23 #include <stdio.h> //printf()
24 #include <stdlib.h> //EXIT_SUCCESS
25 
26 int main (void) {
27 
28  printf("Hello, world!\n");
29 
30  return EXIT_SUCCESS;
31 }