728x90
반응형
#include <stdio.h>
typedef struct
{
unsigned int a;
}test_type;
void main(void)
{
test_type *ptr;
test_type test_type1;
ptr = &test_type1;
ptr->a = 5000;
printf("%d\r\n",ptr->a);
}
결과
728x90
반응형
'공부 > C언어' 카테고리의 다른 글
5.[stm32f103][C언어] 구조체 응용하기(구조체 연결) (0) | 2018.02.28 |
---|---|
4.[stm32f103][C언어] 포인터 사용하기 (0) | 2017.12.08 |
3.[stm32f103][C언어] 구조체 포인터 (0) | 2017.11.29 |
2.[stm32f103][C언어] static (0) | 2017.11.13 |
1.[stm32f103][C언어] 구조체 return (0) | 2017.09.13 |