C Programming Tutorial for Beginners
이번 강의에서 function을 적은 방식은 좋은 방식이 아니다.
다만 이번 유투브 강의를 따라서 하는거니까 지금은 비디오를 따라간다.
#include <stdio.h>
#include <stdlib.h>
int main()
{
return 0;
}
void myFunction(){
printf("Custom Function");
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
myFunction() ;
return 0;
}
void myFunction(){
printf("Custom Function");
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Top\\n");
sayHi() ;
printf("Bottom\\n");
return 0;
}
void sayHi()
{
printf("Hello User\\n");
}