fork download
  1. #include <stdio.h>
  2.  
  3. #define MAX 50
  4.  
  5. typedef int TIPOCHAVE;
  6.  
  7. typedef struct {
  8. TIPOCHAVE chave;
  9. } REGISTRO;
  10.  
  11. typedef struct {
  12. REGISTRO A[MAX]; //Linha 10
  13. int nroElem;
  14. } LISTA;
  15.  
  16. int main(void) {
  17. // your code goes here
  18. return 0;
  19. }
  20.  
  21. //https://pt.stackoverflow.com/q/225350/101
Success #stdin #stdout 0s 4348KB
stdin
Standard input is empty
stdout
Standard output is empty