TGTGInsighttelegram intelligenceLIVE / telegram public index
Innhold
Innholdet i innlegget
// <----------pointer to pointer--------> // int c = 12; // int *cptr = &c; // cout << &c << endl; // cout << cptr << endl<<endl; // int **ccptr = &cptr; // cout << &cptr << endl; // cout << ccptr << endl;