Click here to Skip to main content
15,883,822 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: What's the closest thing to anonymous function pointers I can achieve that compiles with GCC? Pin
Richard MacCutchan10-Jul-20 22:05
mveRichard MacCutchan10-Jul-20 22:05 
AnswerRe: What's the closest thing to anonymous function pointers I can achieve that compiles with GCC? Pin
CPallini12-Jul-20 20:33
mveCPallini12-Jul-20 20:33 
GeneralRe: What's the closest thing to anonymous function pointers I can achieve that compiles with GCC? Pin
arnold_w12-Jul-20 23:52
arnold_w12-Jul-20 23:52 
GeneralRe: What's the closest thing to anonymous function pointers I can achieve that compiles with GCC? Pin
Richard MacCutchan13-Jul-20 2:00
mveRichard MacCutchan13-Jul-20 2:00 
GeneralRe: What's the closest thing to anonymous function pointers I can achieve that compiles with GCC? Pin
arnold_w13-Jul-20 3:53
arnold_w13-Jul-20 3:53 
GeneralRe: What's the closest thing to anonymous function pointers I can achieve that compiles with GCC? Pin
Richard MacCutchan13-Jul-20 4:29
mveRichard MacCutchan13-Jul-20 4:29 
GeneralRe: What's the closest thing to anonymous function pointers I can achieve that compiles with GCC? Pin
arnold_w4-Aug-20 5:21
arnold_w4-Aug-20 5:21 
Questionuse argv while debugging Pin
chipp_zanuff4-Jul-20 20:08
chipp_zanuff4-Jul-20 20:08 
i'm just testing to run prog using parameters, but why i got error when debugging?

screenshot[^]

this is my code:

#include <iostream>

int main (int argc, char * argv []) {
	
	if (argc > 0) {
		std::cout << *argv[1] << std::endl;
	}

	std::cin.ignore(std::numeric_limits<int>::max(), '\n');
	std::cout << "press ENTER to close program.";
	std::cin.get();
	return 0;
}

AnswerRe: use argv while debugging Pin
Richard MacCutchan4-Jul-20 21:09
mveRichard MacCutchan4-Jul-20 21:09 
GeneralRe: use argv while debugging Pin
chipp_zanuff4-Jul-20 22:15
chipp_zanuff4-Jul-20 22:15 
GeneralRe: use argv while debugging Pin
Richard MacCutchan4-Jul-20 22:19
mveRichard MacCutchan4-Jul-20 22:19 
GeneralRe: use argv while debugging Pin
chipp_zanuff4-Jul-20 23:15
chipp_zanuff4-Jul-20 23:15 
GeneralRe: use argv while debugging Pin
Richard MacCutchan5-Jul-20 0:11
mveRichard MacCutchan5-Jul-20 0:11 
GeneralRe: use argv while debugging Pin
chipp_zanuff5-Jul-20 6:17
chipp_zanuff5-Jul-20 6:17 
GeneralRe: use argv while debugging Pin
Richard MacCutchan5-Jul-20 6:35
mveRichard MacCutchan5-Jul-20 6:35 
Questionpython language Pin
seotutorialszone4-Jul-20 10:40
seotutorialszone4-Jul-20 10:40 
AnswerRe: python language Pin
chipp_zanuff4-Jul-20 20:13
chipp_zanuff4-Jul-20 20:13 
AnswerRe: python language Pin
Richard MacCutchan4-Jul-20 21:06
mveRichard MacCutchan4-Jul-20 21:06 
AnswerRe: python language Pin
Patrice T5-Jul-20 0:16
mvePatrice T5-Jul-20 0:16 
AnswerRe: python language Pin
CPallini5-Jul-20 20:15
mveCPallini5-Jul-20 20:15 
QuestionCreate C++ Program for Android Gaming Pin
OnlyGame134-Jul-20 6:46
OnlyGame134-Jul-20 6:46 
AnswerRe: Create C++ Program for Android Gaming Pin
Dave Kreskowiak4-Jul-20 6:56
mveDave Kreskowiak4-Jul-20 6:56 
AnswerRe: Create C++ Program for Android Gaming Pin
David Crow4-Jul-20 9:42
David Crow4-Jul-20 9:42 
AnswerRe: Create C++ Program for Android Gaming Pin
CPallini5-Jul-20 20:17
mveCPallini5-Jul-20 20:17 
QuestionSir? Builtin Function Help Pin
NaumanMalik26-Jun-20 9:08
NaumanMalik26-Jun-20 9:08 

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.