#include <stdio.h>
int main()
{
int vetor[][3] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
int valor= *(vetor[1] + 1) + **(vetor + 3);
printf("%d", valor);
}
The code above was taken from theoretical exercises, but I do not h...
asked by
25.09.2018 / 19:32