AYUDA
ME GUSTARIA SABER COMO ASIGNAR COMO BORRAR UN VECTOR DE CARACTERES DE TIPO STRING Y UNO DE TIPO FLOAT.
COMO SE HACER PARA LIBERARLO DE LA MEMORIA?
COMO SE HACER PARA LIBERARLO DE LA MEMORIA?
supongamos que m y n son dos numeros enteros positivos que pueden se entrados durante el corrido del programa
asignacion de memoria :
int *a = new int[m];
float *b = new float[n];
borrado de la memoria:
delete []a;
delete []b;
asignacion de memoria :
int *a = new int[m];
float *b = new float[n];
borrado de la memoria:
delete []a;
delete []b;
