> For the complete documentation index, see [llms.txt](https://mentebinaria.gitbook.io/manual-da-linguagem-gnu-c/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mentebinaria.gitbook.io/manual-da-linguagem-gnu-c/14.-ponteiros/designadores-de-tipo-de-ponteiro.md).

# Designadores de Tipo de Ponteiro

Todo tipo em C possui um *designador*; você o obtém removendo o nome da variável e o ponto e vírgula de uma declaração (veja [Designadores de Tipos](/manual-da-linguagem-gnu-c/11.-tipos-primitivos/designadores-de-tipos.md)). Aqui estão os designadores para os tipos de ponteiros das declarações de exemplo da seção anterior:

```c
int *           /* Ponteiro para int. */
double *        /* Ponteiro para double. */
double (*)[5]   /* Ponteiro para double[5]. */
```

Lembre-se: para entender que tipo um designador representa, imagine a declaração correspondente com um nome de variável inserido, e determine qual seria o tipo dessa variável. Assim, o designador de tipo `double (*)[5]` corresponde à declaração de variável:

```c
double (*variavel)[5];
```

Isso declara uma variável ponteiro que, ao ser desreferenciada, fornece um array de 5 `double`s. Portanto, o designador de tipo significa: “ponteiro para um array de 5 `double`s”.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://mentebinaria.gitbook.io/manual-da-linguagem-gnu-c/14.-ponteiros/designadores-de-tipo-de-ponteiro.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
