Click here to Skip to main content
15,885,740 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: problem with RegSetvalue in c++ Pin
Richard MacCutchan5-Feb-14 1:39
mveRichard MacCutchan5-Feb-14 1:39 
GeneralRe: problem with RegSetvalue in c++ Pin
mohamad mahdi zeinali5-Feb-14 1:52
mohamad mahdi zeinali5-Feb-14 1:52 
GeneralRe: problem with RegSetvalue in c++ Pin
Richard MacCutchan5-Feb-14 2:03
mveRichard MacCutchan5-Feb-14 2:03 
QuestionWNetGetConnection API behaves wrongly when UAC is enabled Pin
atm.menon4-Feb-14 19:19
atm.menon4-Feb-14 19:19 
GeneralRe: WNetGetConnection API behaves wrongly when UAC is enabled Pin
Malli_S4-Feb-14 22:00
Malli_S4-Feb-14 22:00 
GeneralRe: WNetGetConnection API behaves wrongly when UAC is enabled Pin
atm.menon12-Feb-14 15:38
atm.menon12-Feb-14 15:38 
QuestionLining up the Decimal Points Pin
BobInNJ4-Feb-14 16:50
BobInNJ4-Feb-14 16:50 
AnswerRe: Lining up the Decimal Points Pin
Malli_S4-Feb-14 21:58
Malli_S4-Feb-14 21:58 
Check if this is helpful.


{
		cout << fixed;
		for( int i = 0; i<10; i++ ) {
			double f1 = (int)(i/20);
			double f2 = 3.1415*i;
			double f3 = 3.1415*(f2+3);
			std::cout << std::setfill (' ') << std::setw (10);
			cout.width( 10 );
			cout.precision( 4 );
			cout << f1 << " ";
			cout.width( 10 );
			cout << f2 << " ";
			cout.width( 10 );
			cout << f3 << endl;
		}

		getch();
	}

[Delegates]      [Virtual Desktop]      [Tray Me !]

-Malli...! Rose | [Rose]

GeneralRe: Lining up the Decimal Points Pin
BobInNJ5-Feb-14 3:24
BobInNJ5-Feb-14 3:24 
GeneralRe: Lining up the Decimal Points Pin
Malli_S5-Feb-14 21:12
Malli_S5-Feb-14 21:12 
QuestionRe: Lining up the Decimal Points Pin
David Crow5-Feb-14 6:18
David Crow5-Feb-14 6:18 
AnswerRe: Lining up the Decimal Points Pin
BobInNJ5-Feb-14 11:10
BobInNJ5-Feb-14 11:10 
SuggestionRe: Lining up the Decimal Points Pin
David Crow5-Feb-14 16:07
David Crow5-Feb-14 16:07 
GeneralRe: Lining up the Decimal Points Pin
BobInNJ6-Feb-14 2:10
BobInNJ6-Feb-14 2:10 
QuestionProper array memory management in C++ Pin
Don Guy3-Feb-14 12:43
Don Guy3-Feb-14 12:43 
AnswerRe: Proper array memory management in C++ Pin
Richard MacCutchan3-Feb-14 21:42
mveRichard MacCutchan3-Feb-14 21:42 
AnswerRe: Proper array memory management in C++ Pin
Maximilien4-Feb-14 5:26
Maximilien4-Feb-14 5:26 
GeneralRe: Proper array memory management in C++ Pin
jschell6-Feb-14 8:34
jschell6-Feb-14 8:34 
AnswerRe: Proper array memory management in C++ Pin
Malli_S4-Feb-14 22:14
Malli_S4-Feb-14 22:14 
QuestionRelative path for #include directive - how to specify subdirectory on "down"level Pin
Vaclav_31-Jan-14 10:18
Vaclav_31-Jan-14 10:18 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Garth J Lancaster31-Jan-14 10:57
professionalGarth J Lancaster31-Jan-14 10:57 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
jeron131-Jan-14 11:00
jeron131-Jan-14 11:00 
GeneralRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Vaclav_31-Jan-14 11:09
Vaclav_31-Jan-14 11:09 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Richard Andrew x6431-Jan-14 11:25
professionalRichard Andrew x6431-Jan-14 11:25 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Richard MacCutchan31-Jan-14 22:13
mveRichard MacCutchan31-Jan-14 22:13 

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.