Pergunta de entrevista da empresa DP

What is a pointer in C, and how is it declared?

Resposta da entrevista

Sigiloso

29 de jul. de 2025

A pointer is a variable that stores the memory address of another variable. It is declared using *, like int *ptr; to store the address of an int.