Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

291
Visualizações
Initializing Malloc'ed structure

I am trying to initalize a structure using braces, but i am really trying to initalize the structure that is pointed to by a pointer returned from a malloc call.

typedef struct foo{
    int x;
    int y;
} foo;

foo bar = {5,6};

I understand how to do that, but i need to do it in this context.

foo * bar = malloc(sizeof(foo));
*bar = {3,4};
over 4 years ago · Santiago Trujillo
2 Respostas
Responde à pergunta

0

(This was answered in comments, so making it a CW).

You need to cast the right-hand side of the assignment, like so:

*bar = (foo) {3,4};

As pointed out by @cremno in the comment, this isn't a cast but rather an assignment of a compound literal

The relevant section of the C99 standard is: 6.5.2.5 Compound literals which says:

A postfix expression that consists of a parenthesized type name followed by a brace enclosed list of initializers is a compound literal. It provides an unnamed object whose value is given by the initializer list

over 4 years ago · Santiago Trujillo Relatório

0

bar is a pointer that holds reference to the malloced foo struct

Use bar->x=3;bar->y=4

over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda