What is a pointer variable in C?

1 answer

Answer

1188037

2026-07-16 05:20

+ Follow

Pointer variables point to data variables. They are mostly used to point to dynamically allocated data variables, but can actually point to anything (e.g. statically allocated variables, array elements, anywhere inside a variable, program machine code, I/O device descriptors, nonexistent memory). Misuse of pointer variables, either unintentionally or intentionally, is a major cause of nearly impossible to debug software problems in programs written in C (and C++).

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.