📅  最后修改于: 2022-03-11 14:44:45.471000             🧑  作者: Mango
#include
#include
int main (void){
int vetor [2];
int *v; // ponteiro
v = vetor;
v[0] = 123;
v[1] = 456;
printf ("vetor[0] = %d\n", vetor[0]);
printf ("vetor[1] = %d\n\n", vetor[1]);
system ("pause");
}