Tutorial - C - Header Files

preview_player
Показать описание
Tutorial ensinando como criar arquivos de Cabeçalhos, funções externas e chamar via #include.
Programa utilizado Dev C++

Рекомендации по теме
Комментарии
Автор

Depois de anos finalmente com o seu vídeo consegui aprender como fazer. Parabéns pelo vídeo. Sucesso.

lucasmirandaassuncao
Автор

Hello! I have a question ... What happens if I put stdio.h and stdlib.h in the header and remove them from main.c?
It is an important question that afflicts me ... Thank you very much

diegopersello
Автор

Thanks! didnt understand a word but the video helped me:)

spleen
Автор

Vocês me ajudaram muito, amo v6 pra carayo s2

britomacau
Автор

E se forem passados 2 parametros? e se forem ponteiros como fica?

lucassilva
Автор

Caso alguem se interesse, existe uma outra maneira interessante de calcular o fatorial, sua forma recursiva :

int fatorial(int num){
if(num == 1 || num == 0)
return 1;
else
return fatorial(num - 1) * num;
}

cyberdemon
Автор

why did you name video title in english and talking in some other language... I have that....

dublux
Автор

Darn. I was hoping this was in a language that is spoken around the world, Klingon....or is it Elvish? I forget. I don't get out of my basement often to get a chance to speak to actual people.

SimmeringPotpourri