If I have already set a pointer to my structure because I can not allocate it.
#include <stdio.h>
#include <stdlib.h>
struct ponto
{
int a, b;
};
typedef struct ponto *Ponteiro; // define um ponteiro para estrutura ponto
typedef struct ponto estrutura; // aqui chamo a estrutura ponto de estrutura
int main(int argc, char** argv)
{
Ponteiro = malloc(sizeof(estrutura));
return 0;
}