C의 무효 포인터는 어떤 데이터 유형과도 연관되지 않은 포인터입니다. 이는 저장소의 일부 데이터 위치, 즉 변수의 주소를 가리킵니다. 범용 포인터라고도 합니다. C 언어에서 malloc() 및 calloc() 함수는 void * 또는 일반 포인터를 반환합니다.
몇 가지 제한 사항이 있습니다. -
1) void 포인터로 인해 포인터 연산에서는 void 포인터의 특정 크기를 사용할 수 없습니다.
2) 역참조로 사용할 수 없습니다.
Begin Declare a of the integer datatype. Initialize a = 7. Declare b of the float datatype. Initialize b = 7.6. Declare a pointer p as void. Initialize p pointer to a. Print “Integer variable is”. Print the value of a using pointer p. Initialize p pointer to b. Print “Float variable is”. Print the value of b using pointer p End.
이것은 간단한 예입니다. -
라이브 데모
#include<stdlib.h> int main() { int a = 7; float b = 7.6; void *p; p = &a; printf("Integer variable is = %d", *( (int*) p) ); p = &b; printf("\nFloat variable is = %f", *( (float*) p) ); return 0; }
Integer variable is = 7 Float variable is = 7.600000
위 내용은 C의 널 포인터의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!