#include <stdio.h> // νμ€ μ
μΆλ ₯ ν¨μ
void function1(){ // λ§€κ°λ³μμ λ°νκ°μ΄ μμ
printf("λ§€κ°λ³μλ μκ³ λ°νκ°λ μλ ν¨μ\n");
printf("λ§€κ°λ³μ: μμ\n");
printf("λ°νκ° μμ: void\n");
}
int main(){ // νλ‘κ·Έλ¨ μμ, main ν¨μ μ μ
function1(); // λ§€κ°λ³μμ λ°νκ°μ΄ μλ ν¨μ νΈμΆ
}