Como encero el vector? tengo la siguiente estrcutura y quiero encerar el vector cedula.. le he puesto NULL y =0 y me sale error.. como lo hago? porfa
Código (cpp) [Seleccionar]
using namespace std;
struct registro_datos{
int cedula[10];
char nombre[30];
char apellido[30];
int numero;
};
struct registro_datos carro;
carro.cedula[]=NULL;
strcpy(hotel.nombre,"");
strcpy(hotel.apellido,"");
carro.numero=0;
;
Código (cpp) [Seleccionar]
[Error] incompatible types in assignment of 'long long int' to 'int [10]'