본문 바로가기
자료구조

포인터 실습 2 toOne.c

by chaechaekim 2019. 5. 20.
#include<stdio.h>

void printIntVar(char *name, int value)
{
	printf("%s\t = %d\n", name, value);
}

int main()
{
	int one = 1;
	int *to_one;
	
	printf("%d\n", &one);
	to_one = &one;
	printIntVar("one", one);
	*to_one = one + 1;
	printIntVar("one",one);
	*to_one = *to_one + 1;
	printIntVar("one",one);
	(*to_one)++;
	printIntVar("one",one);
	
	return 0; 
}


/*
6487572
one     =1
one     =2
one     =3
one     =4

--------------------------------
Process exited after 0.01745 seconds with return value 0
계속하려면 아무 키나 누르십시오 . . .
*/

'자료구조' 카테고리의 다른 글

변수 값 교환 함수  (0) 2019.05.21
포인터 제 1 법칙 (law1.c)  (0) 2019.05.20
포인터 실습 1  (0) 2019.05.17
리스트  (0) 2019.05.17
  (0) 2019.05.14

댓글