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; }