Simple hello world program v c

Příklady kódu

0
0

hello world v c

/*Printing Hello World in C Programming*/
#include <stdio.h>
int main(){ //C unlike other languages must have atleast one function, the main function.

	printf("Hello World"); //printf is defined in stdio.h, displays the output on the screen
    return 0;
    
}

Související stránky

Související stránky s příklady

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................