I need to invert one vector and store in another this way:
vector [5] = [1,2,3,4,5] < I will pass the values so
inverse [5] = [5,4,3,2,1] < It is necessary that you do so invert the values and position.
My code:
#include <stdio.h>
#include <stdlib.h>
int main(){
int cc[5], inverso[5]; //conta corrente
int i=0, k=5;
for(i; i < 5; i++){
printf("Numero da conta corrente: ", i); // Inserir valores
scanf(" %d", &cc[i]);
}
for(i=0; i < 5; i++){
for(k; k >= 0; k--){
if(inverso[i] == 0){
inverso[i] = cc[k-1]; //inverter o vetor e armazenar, -1 pois o ultimo numero armazenado está na posição 4 do vetor: cc[].
}else{
inverso[i] = cc[k];
}
}
}
for(i=0; i < 5; i++)
printf("%d", cc[i]); // Ver os valores armazenados
printf("\n");
for(i=0; i < 5; i++)
printf("%d", inverso[i]); //Verificar se for invertido
}