fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define MAX 30
  4.  
  5. struct CARRO{
  6. int id;
  7. char fabricante[MAX];
  8. char modelo[MAX];
  9. int ano;
  10. char cor[MAX];
  11. int preco;
  12. };
  13.  
  14. int main() {
  15. int qtd;
  16. scanf("%d", &qtd);
  17. struct CARRO *carros = malloc(qtd * sizeof(struct CARRO));
  18. free(carros); //só para usar a variável, neste caso não precisa
  19. }
  20.  
  21. //https://pt.stackoverflow.com/q/215819/101
Success #stdin #stdout 0s 4564KB
stdin
3
stdout
Standard output is empty