错误:预期在'。'之前的';',','或')'。令牌?

时间:2019-03-22 15:49:23

标签: c pointers struct

我正在用C和结构,指针等编写程序。 但是,当我运行它时,它会出现以下错误:“错误:在'。'之前是预期的';',','或')'。令牌”

在下一行

char *strcpy(char *account[i].nome, const char *nomi[p]);

我基本上想做的是,将取自char nomi [p]的随机名称(其中p是0到4之间的随机索引)分配到account.nome [i]变量中,其中[i]在for循环中被清除。

如您所见,我评论了这一行

//account[i].nome = nomi[p];

否则,它将给我这个错误->错误:分配给具有数组类型的表达式

有任何提示吗?

#include <stdio.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h> // includo la libreria per gestire le funzioni sui caratteri

#define MAX_ACCOUNT 5
#define MAX_NOME 20
#define MAX_COGNOME 20
#define MAX_EMAIL 40

typedef struct {
  int giorno;
  int mese;
  int anno;
} data;

typedef struct {
  char nome[MAX_NOME];
  char cognome[MAX_COGNOME];
  data datadinascita;
  char email[MAX_EMAIL];
  char password;
} acc;

int main(void) {

  int seed = time(NULL); //     Randomizzo
  srand(seed);           //     time
  unsigned i = 0;
  unsigned p = 0;
  unsigned q = 0;
  unsigned r = 0;
  char* nomi[4] = {"Gianmarco","Francesco","Michele","Marco","Roberto"};
  char* cognomi[4] = {"Lorusso","Simone","Caggiano","Moramarco","Colonna"};
  char* email[4] = {"rymmysice-2084@gmail.com","junetome-4060@hotmail.com","ikijaza-9272@live.it","hokalife-2155@libero.it","ottejotto-2395@gmail.com"};

  acc account[MAX_ACCOUNT] = {0};
  data datadinascita[MAX_ACCOUNT]; //variabile datadinascita


  //Ciclo di lettura
  for(i = 0; i < MAX_ACCOUNT; i++) {

    p = rand() % (4-0+1) + 0; //Max 4, Min 0
    q = rand() % (4-0+1) + 0; //Max 4, Min 0
    r = rand() % (4-0+1) + 0; //Max 4, Min 0

    char *strcpy(char *account[i].nome, const char *nomi[p]);
    //account[i].nome = nomi[p];
    //account[i].cognome = *cognomi[q];
    datadinascita[i].giorno = rand() % (31-1+1) + 1; //Max 31, Min 1
    datadinascita[i].mese = rand() % (12-1+1) + 1; //Max 12, Min 1
    datadinascita[i].anno = rand() % (2003-1960+1) + 1960; //Max 2003, Min 1960
    //account[i].email = *email[r];

    printf("ACCOUNT #%d: ", i+1);
    printf("Prova");
    printf("\n\tNome: %19s", account[i].nome);
    printf("\n\tCognome: %19s", account[i].cognome);
    printf("\n\tData di nascita: %d-%d-%d", datadinascita[i].giorno, datadinascita[i].mese, datadinascita[i].anno);
    printf("\n\tEmail: %39s", account[i].email);
    printf("\n");

  }

  return 0;
}

1 个答案:

答案 0 :(得分:0)

应该像

strcpy(account[i].nome, nomi[p]);