int f(int x); // 정수(정의역) x를 인자로 받아 정수(공역)를 반환하는 함수 f 를 '선언' 한 것입니다.
#include <stdio.h> int f(){ // 정수 5를 반환하는 함수 f 입니다. return 5; } main(){ printf("%d", f()); }
int f(int x){ return x^2; /// wrong }
int f(int x){ return x*x; }
void p(int n) { printf("%d\n", n); } int main() { int x=7; if(x>10){ p(1); }else if(x>5){ p(2); }else{ p(3); } p(4); return 0; }