1: int soucet(int scitanec1, int scitanec2); 2: //deklarace funkce - ukazuje hlavičku funkce 3: //int = návratová hodnota 4: //soucet = jméno funkce 5: //v závorce jsou parametry funkce 6: 7: int soucet(int scitanec1, int scitanec2){ 8: return scitanec1 + scitanec2; 9: //implementace výše deklarované funkce 10: //říká co se při zavolání funkce stane 11: }