Click here to Skip to main content
15,890,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Starting a password protected NT Service Pin
Aescleal23-May-10 10:24
Aescleal23-May-10 10:24 
GeneralRe: Starting a password protected NT Service Pin
pubis23-May-10 10:56
pubis23-May-10 10:56 
QuestionWM_QUERYENDSESSION problem on C++ Builder 2010 Pin
Member 88968923-May-10 7:06
Member 88968923-May-10 7:06 
AnswerRe: WM_QUERYENDSESSION problem on C++ Builder 2010 Pin
ARopo24-May-10 6:26
ARopo24-May-10 6:26 
GeneralRe: WM_QUERYENDSESSION problem on C++ Builder 2010 Pin
Member 88968924-May-10 13:36
Member 88968924-May-10 13:36 
QuestionC++ String Creation Pin
sikas_Cisco23-May-10 4:57
sikas_Cisco23-May-10 4:57 
AnswerRe: C++ String Creation Pin
Dr.Walt Fair, PE23-May-10 5:18
professionalDr.Walt Fair, PE23-May-10 5:18 
AnswerRe: C++ String Creation Pin
John R. Shaw23-May-10 7:21
John R. Shaw23-May-10 7:21 
Sounds like home work, but I'll explain it any way.

This is a simple binary example; where 'a' implies bit not set and 'b' implies bet set.

Possible solutions:
for( int i = 0; i < 4; ++i )
{
   if( 2 & i )
      std::cout << "b";
   else
      std::cout << "a";
   if( 1 & i )
      std::cout << "b";
   else
      std::cout << "a";
   std::cout << std::endl;
}

OR
char c[2] = { 'a', 'b' };
for( int i = 0; i < 4; ++i )
{
   std::cout << c[1 & (i>>1)];
   std::cout << c[1 & i];
   std::cout << std::endl;
}

INTP
"Program testing can be used to show the presence of bugs, but never to show their absence." - Edsger Dijkstra
"I have never been lost, but I will admit to being confused for several weeks. " - Daniel Boone

GeneralRe: C++ String Creation Pin
sikas_Cisco23-May-10 8:55
sikas_Cisco23-May-10 8:55 
AnswerRe: C++ String Creation Pin
Aescleal23-May-10 9:36
Aescleal23-May-10 9:36 
QuestionIntel Compiler IA-32 11.0.061 installation on VS 2010 question Pin
Chesnokov Yuriy23-May-10 4:07
professionalChesnokov Yuriy23-May-10 4:07 
QuestionOLE interface for Crichedit Pin
ForNow22-May-10 19:27
ForNow22-May-10 19:27 
Questionnew vs free and malloc vs delete Pin
msr_codeproject22-May-10 18:24
msr_codeproject22-May-10 18:24 
AnswerRe: new vs free and malloc vs delete Pin
loyal ginger22-May-10 19:01
loyal ginger22-May-10 19:01 
AnswerRe: new vs free and malloc vs delete Pin
Stephen Hewitt22-May-10 22:11
Stephen Hewitt22-May-10 22:11 
AnswerRe: new vs free and malloc vs delete Pin
Aescleal23-May-10 5:39
Aescleal23-May-10 5:39 
AnswerRe: new vs free and malloc vs delete Pin
John R. Shaw23-May-10 6:23
John R. Shaw23-May-10 6:23 
AnswerRe: new vs free and malloc vs delete Pin
MS_TJ23-May-10 19:52
MS_TJ23-May-10 19:52 
GeneralRe: new vs free and malloc vs delete Pin
Aescleal24-May-10 4:25
Aescleal24-May-10 4:25 
Questionopen txt file form web or ftp ? Pin
da_22-May-10 3:38
da_22-May-10 3:38 
AnswerRe: open txt file form web or ftp ? Pin
Richard MacCutchan22-May-10 4:28
mveRichard MacCutchan22-May-10 4:28 
AnswerRe: open txt file form web or ftp ? Pin
norish22-May-10 8:58
norish22-May-10 8:58 
AnswerRe: open txt file form web or ftp ? Pin
David Crow22-May-10 16:28
David Crow22-May-10 16:28 
GeneralRe: open txt file form web or ftp ? Pin
wangningyu23-May-10 5:43
wangningyu23-May-10 5:43 
AnswerRe: open txt file form web or ftp ? Pin
Hristo-Bojilov23-May-10 3:44
Hristo-Bojilov23-May-10 3:44 

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.