728x90
반응형
1. test.h
#include <stdio.h>
test2(unsigned int *test2);
2. main.c
#include "test.h"
void main(void)
{
unsigned int test=10;
printf("test1=%d\r\n", test);
test2(&test);
printf("test2=%d\r\n",test);
}
3. test2.c
#include "test.h"
test2(unsigned int *test2)
{
unsigned int *test2_ptr;
test2_ptr = test2;
*test2_ptr = 20;
}
4. 결과
728x90
반응형
'공부 > C언어' 카테고리의 다른 글
[c언어] 포인트 문자열 (0) | 2018.03.09 |
---|---|
5.[stm32f103][C언어] 구조체 응용하기(구조체 연결) (0) | 2018.02.28 |
3.[stm32f103][C언어] 구조체 화살표 연산자(포인트 멤버 연산자)-> (0) | 2017.12.07 |
3.[stm32f103][C언어] 구조체 포인터 (0) | 2017.11.29 |
2.[stm32f103][C언어] static (0) | 2017.11.13 |