25 1 C void fct 1int void fct

  • Slides: 6
Download presentation

25 -1 C 언어의 메모리 구조 void fct 1(int); void fct 2(int); int a=10;

25 -1 C 언어의 메모리 구조 void fct 1(int); void fct 2(int); int a=10; int b=20; int main (void) { int m=123; fct 1(m); fct 2(m); return 0; } void fct 1(int c){ int d=30; } void fct 2(int e){ int f=40; } 그림 25 -2