본문 바로가기

카테고리 없음

c/c++ vlod형 포인터 개념

#include <stdio.h>

//void pointer
int main(void)
{
void *a;  //void *a 에러 아나는 이유: *가 4byte라서
return 0;
}