본문 바로가기

공부/C언어

21. *(int*) 응용

728x90
반응형

main.c

#include <stdio.h>

void main(void) { 
 int test1 = 10; 
 int test2 = 0; 

 test2 = &test1; 
 *(int*)test2 = 23; 

 printf("test1=%d\r\n", test1); 
 printf("test2=0x%x\r\n", test2); 

}

*(int*) 을 통해서 다른 변수의 값에 영향을 줄수 있다.

 

결과화면

728x90
반응형

'공부 > C언어' 카테고리의 다른 글

23. 포인트 문자열  (0) 2019.07.11
22. 구조체 배열 변수 선언  (0) 2019.07.10
20. visual studio에서 sprintf 사용하기  (0) 2019.07.08
19. union 응용  (0) 2019.07.08
18. typedef enum 응용  (0) 2019.05.10