Click here to Skip to main content
15,901,284 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to get disk model and serial number for the disk Windows is installed on Pin
trønderen21-Sep-23 6:29
trønderen21-Sep-23 6:29 
GeneralRe: How to get disk model and serial number for the disk Windows is installed on Pin
Richard MacCutchan20-Sep-23 22:03
mveRichard MacCutchan20-Sep-23 22:03 
GeneralRe: How to get disk model and serial number for the disk Windows is installed on Pin
jschell21-Sep-23 4:57
jschell21-Sep-23 4:57 
GeneralRe: How to get disk model and serial number for the disk Windows is installed on Pin
trønderen21-Sep-23 6:23
trønderen21-Sep-23 6:23 
AnswerRe: How to get disk model and serial number for the disk Windows is installed on Pin
Dave Kreskowiak20-Sep-23 13:23
mveDave Kreskowiak20-Sep-23 13:23 
AnswerRe: How to get disk model and serial number for the disk Windows is installed on Pin
Randor 20-Sep-23 22:34
professional Randor 20-Sep-23 22:34 
Questionwrite a progrrame create a calculator (using function) Pin
CHIRAG VAJA 202318-Sep-23 20:15
CHIRAG VAJA 202318-Sep-23 20:15 
AnswerRe: write a progrrame create a calculator (using function) Pin
Victor Nijegorodov18-Sep-23 20:26
Victor Nijegorodov18-Sep-23 20:26 
RantRe: write a progrrame create a calculator (using function) Pin
Richard Deeming18-Sep-23 21:23
mveRichard Deeming18-Sep-23 21:23 
AnswerRe: write a progrrame create a calculator (using function) Pin
jschell19-Sep-23 5:49
jschell19-Sep-23 5:49 
QuestionRe: write a progrrame create a calculator (using function) Pin
CPallini19-Sep-23 20:02
mveCPallini19-Sep-23 20:02 
AnswerRe: write a progrrame create a calculator (using function) Pin
Richard MacCutchan19-Sep-23 21:44
mveRichard MacCutchan19-Sep-23 21:44 
GeneralRe: write a progrrame create a calculator (using function) Pin
CPallini19-Sep-23 21:50
mveCPallini19-Sep-23 21:50 
JokeRe: write a progrrame create a calculator (using function) Pin
trønderen21-Sep-23 6:35
trønderen21-Sep-23 6:35 
QuestionPointer indirection Pin
Calin Negru14-Sep-23 3:01
Calin Negru14-Sep-23 3:01 
AnswerRe: Pointer indirection Pin
Mircea Neacsu14-Sep-23 3:06
Mircea Neacsu14-Sep-23 3:06 
GeneralRe: Pointer indirection Pin
Calin Negru14-Sep-23 4:13
Calin Negru14-Sep-23 4:13 
GeneralRe: Pointer indirection Pin
Mircea Neacsu14-Sep-23 4:31
Mircea Neacsu14-Sep-23 4:31 
GeneralRe: Pointer indirection Pin
Calin Negru14-Sep-23 9:40
Calin Negru14-Sep-23 9:40 
GeneralRe: Pointer indirection Pin
jschell14-Sep-23 10:50
jschell14-Sep-23 10:50 
GeneralRe: Pointer indirection Pin
Calin Negru14-Sep-23 20:55
Calin Negru14-Sep-23 20:55 
GeneralRe: Pointer indirection Pin
k505414-Sep-23 4:32
mvek505414-Sep-23 4:32 
AnswerRe: Pointer indirection Pin
Richard MacCutchan14-Sep-23 5:43
mveRichard MacCutchan14-Sep-23 5:43 
C++
int Strawberry = 10;
int * PointerInd0 = &Strawberry;
std::cout << "*PointerInd0: " << *PointerInd0 << std::endl;
int ** PointerInd1 = &PointerInd0;
std::cout << "**PointerInd1: " << **PointerInd1 << std::endl;
// I’m not sure what comes next
int *** PointerInd2 = &PointerInd1;
std::cout << "***PointerInd2: " << ***PointerInd2 << std::endl;
int **** PointerInd3 = &PointerInd2;
std::cout << "****PointerInd3: " << ****PointerInd3 << std::endl;

Results:
*PointerInd0: 10
**PointerInd1: 10
***PointerInd2: 10
****PointerInd3: 10

And so until the compiler or the application gives up. If you are really interested then get an assembly listing and see what the machine code is doing.
GeneralRe: Pointer indirection Pin
Calin Negru14-Sep-23 9:10
Calin Negru14-Sep-23 9:10 
GeneralRe: Pointer indirection Pin
Richard MacCutchan14-Sep-23 21:12
mveRichard MacCutchan14-Sep-23 21:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.