Pular para o conteúdo principal

Postagens

Mostrando postagens com o rótulo int matriz[]

C++, matriz, endereço de memoria, alocacão, int matriz[]

//C++ Facil //https://www.facebook.com/mxatec.mxatec //http://excelresolve.blogspot.com.br //https://www.tumblr.com/blog/marceloxavblogs #include using namespace std; int main( ) { int matriz[3] = { 51, 67, 30 }; cout << &matriz[0] << " : " << matriz[0] << endl; cout << &matriz[1] << " : " << matriz[1] << endl; cout << &matriz[2] << " : " << matriz[2] << endl; system("pause"); }