fork download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. ////// ORIGINALMENTE AS FUNÇÕES ESTÃO EM ARQUIVOS SEPARADOS
  4.  
  5. // DECLARAÇÃO DA STRUCT A SER EXPLORADA
  6. typedef struct registro_agenda{
  7. char *name;
  8. char *adress;
  9. int *phone;
  10. struct registro_agenda *next;
  11. } registro;
  12.  
  13. // FUNÇÃO PARA ALOCAR MEMÓRIA PARA UM TIPO "REGISTRO",
  14. // OBSERVE QUE ELA TEM RETORNO "VOID" PROPOSITALMENTE E
  15. // COMO ARGUMENTO RECEBE O ENDEREÇO DE UM PONTEIRO DO TIPO "REGISTRO"
  16. void aloca_registro(registro **ptr_registro, int len_name, int len_adress){
  17.  
  18. *ptr_registro = (registro *)malloc(sizeof(registro));
  19. *ptr_registro->name = (char *)malloc(len_name*sizeof(char));
  20. *ptr_registro->adress = (char *)malloc(len_adress*sizeof(char));
  21. *ptr_registro->phone = (int *)malloc(sizeof(int));
  22. *ptr_registro->next = NULL;
  23.  
  24. }
  25.  
  26. // FUNÇÃO PARA PREENCHIMENTO DE UM TIPO "REGISTRO"
  27. preencher_registro(registro **ptr_registro){
  28. int yes=1;
  29. while(yes){
  30. printf("\n\tDIGITE O NOME: ");
  31. scanf("%s",**ptr_registro->nome);
  32.  
  33. printf("\n\tDIGITE O ENDERECO: ");
  34. scanf("%s",**ptr_registro->adress);
  35.  
  36. printf("\n\tDIGITE O TELEFONE: ");
  37. scanf("%i",**ptr_registro->phone);
  38.  
  39. printf("GOSTARIA DE COLOCAR MAIS UM CONTATO NA AGENDA?");
  40. printf("\n\t0 - NAO\n\t1 - SIM");
  41. scanf("%i", &yes);
  42.  
  43. if(yes == 1) {
  44. *ptr_registro = *ptr_registro->next;
  45. aloca_registro(**ptr_registro,30,50);
  46. continue;
  47. }
  48. else break;
  49. }
  50.  
  51. }
  52.  
  53. // FUNÇÃO PARA MOSTRAR UMA AGENDA NO CONSOLE
  54. mostrar_agenda(registro **ptr_registro){
  55. int reg=1;
  56. while(*ptr_registro != NULL){
  57. printf("MOSTRANDO REGISTRO %i", reg++);
  58. printf("\tNOME %s\n", **ptr_registro->name);
  59. printf("\tENDERECO %s\n", **ptr_registro->adress);
  60. printf("\tTELEFONE %i\n", **ptr_registro->phone);
  61. printf("----------------------------------------------------------------\n\n");
  62. *ptr_registro = *ptr_registro->next;
  63. }
  64.  
  65.  
  66. }
  67.  
  68. int main(){
  69. registro *agenda=NULL;
  70. printf("Teste de ponteiros para ponteiros, structs com ponteiros e funções com esses tipos de dados\n");
  71.  
  72. aloca_registro(&agenda,30,50);
  73. preencher_registro(&agenda);
  74. mostrar_agenda(&agenda);
  75. return 0;
  76. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘aloca_registro’:
prog.c:19: error: request for member ‘name’ in something not a structure or union
prog.c:20: error: request for member ‘adress’ in something not a structure or union
prog.c:21: error: request for member ‘phone’ in something not a structure or union
prog.c:22: error: request for member ‘next’ in something not a structure or union
prog.c: At top level:
prog.c:27: warning: return type defaults to ‘int’
prog.c: In function ‘preencher_registro’:
prog.c:31: error: request for member ‘nome’ in something not a structure or union
prog.c:34: error: request for member ‘adress’ in something not a structure or union
prog.c:37: error: request for member ‘phone’ in something not a structure or union
prog.c:44: error: request for member ‘next’ in something not a structure or union
prog.c:45: error: incompatible type for argument 1 of ‘aloca_registro’
prog.c:41: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result
prog.c: At top level:
prog.c:54: warning: return type defaults to ‘int’
prog.c: In function ‘mostrar_agenda’:
prog.c:58: error: request for member ‘name’ in something not a structure or union
prog.c:59: error: request for member ‘adress’ in something not a structure or union
prog.c:60: error: request for member ‘phone’ in something not a structure or union
prog.c:62: error: request for member ‘next’ in something not a structure or union
stdout
Standard output is empty