1 / 11

9 장 변수 영역

9 장 변수 영역. 학습 목표. 지역 변수와 전역 변수 정적 변수 레지스터 변수. 지역 변수의 유효영역. 자동 지역변수. 전역 변수. 지역변수와 전역변수. 실행 결과. 프로그램 9-1. // main.c 파일 #include &lt;stdio.h&gt; #include &quot;myheader.h&quot; int gVal = 1; int main(void) { int value = 10; printf(&quot; 지역 변수 value 값은 %d 이다 .<br>&quot;, value);

amelia
Download Presentation

9 장 변수 영역

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 9 장 변수 영역

  2. 학습 목표 • 지역 변수와 전역 변수 • 정적 변수 • 레지스터 변수

  3. 지역 변수의 유효영역

  4. 자동 지역변수

  5. 전역 변수

  6. 지역변수와 전역변수 실행 결과 프로그램 9-1 // main.c 파일 #include <stdio.h> #include "myheader.h" int gVal = 1; int main(void) { int value = 10; printf("지역 변수 value 값은 %d 이다.\n", value); printf("전역 변수 gVal 값은 %d 이다.\n", gVal); A( ); printf("함수 A( ) 실행후 \n"); printf("지역 변수 value 값은 %d 이다.\n", value); printf("전역 변수 gVal 값은 %d 이다.\n", gVal); return 0; } // myheader.h void A( ); // func.c #include "myheader.h" extern int gVal; void A( ) { int value = 20; gVal++; }

  7. 변수의 유효영역 실행 결과 프로그램 9-2 #include <stdio.h> void A( ); int Number = 1; int main(void) { int Number = 10; printf("지역 변수 Number 값은 %d 이다.\n", Number); { int Number ; Number = 20; printf("블록 안의 지역 변수 Number 값은 %d 이다.\n", Number); } printf("내부 블록 밖의 Number 값은 %d 이다.\n", Number); return 0; } void A( ) { Number++; printf("전역 변수 Number 값은 %d 이다.\n", Number); }

  8. 정적 변수의 종류

  9. 정적변수 실행 결과 프로그램 9-3 #include <stdio.h> void CallNumber( ); int main(void) { int i; for(i =0 ; i < 5; i++) CallNumber( ); return 0; } void CallNumber( ) { static int count = 1; int number = 1; printf("%d 번째 호출되었습니다. \n",count++); printf("Number 값은 %d 이다. \n\n",number++); }

  10. 레지스터 변수 • 레지스터 변수 선언 • register 자료형 변수명; • 선언 예 • register int count = 1; • 특징 • 레지스터 변수의 데이터형은 int, char, short 및 포인터 형만이 가능하다. • 레지스터 변수는 CPU의 register에 저장되므로 처리 속도가 일반 변수보다 빠르다. • 반복문의 첨자를 register 변수로 사용하는 경우가 많다.

  11. 레지스터 변수 실행 결과 프로그램 9-4 #include <stdio.h> int main(void) { register int count = 1; int result = 0; for(count = 1 ; count <= 5; count++) result += count; printf(" 1부터 5까지의 합은 %d 이다.\n", result); return 0; }

More Related