Click here to Skip to main content
15,881,862 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: struct problem Pin
George L. Jackson19-Feb-06 7:33
George L. Jackson19-Feb-06 7:33 
QuestionMessage Only Window Error Pin
Peter Charlesworth19-Feb-06 2:57
Peter Charlesworth19-Feb-06 2:57 
AnswerRe: Message Only Window Error Pin
Peter Charlesworth19-Feb-06 2:59
Peter Charlesworth19-Feb-06 2:59 
AnswerRe: Message Only Window Error Pin
mbue19-Feb-06 12:18
mbue19-Feb-06 12:18 
GeneralRe: Message Only Window Error Pin
Peter Charlesworth20-Feb-06 6:47
Peter Charlesworth20-Feb-06 6:47 
QuestionPrint Combinations Pin
RockyJames18-Feb-06 9:48
RockyJames18-Feb-06 9:48 
AnswerRe: Print Combinations Pin
Michael Dunn18-Feb-06 11:18
sitebuilderMichael Dunn18-Feb-06 11:18 
AnswerRe: Print Combinations Pin
willbetter22-Feb-06 15:39
willbetter22-Feb-06 15:39 
void PrintCom(char *letterSet,int setLen)
{
int NoOfCom=0;

for(int i=0;i<setLen;i++)
{
for(int j=i+1;j<setLen;j++)
{
cout<<letterSet[i]<<letterSet[j];
NoOfCom++;
}
cout<<endl;
}
cout<<NoOfCom<<endl;
}

the letterSet is a pointer of the set array,setLen is the length of the array.
Questionsrand( ) function Pin
chrizpl17-Feb-06 23:10
chrizpl17-Feb-06 23:10 
AnswerRe: srand( ) function Pin
George L. Jackson18-Feb-06 1:12
George L. Jackson18-Feb-06 1:12 
GeneralRe: srand( ) function Pin
chrizpl18-Feb-06 1:49
chrizpl18-Feb-06 1:49 
GeneralRe: srand( ) function Pin
George L. Jackson18-Feb-06 2:46
George L. Jackson18-Feb-06 2:46 
QuestionSpanning Tree Algorithm Implementation Pin
techno_brains17-Feb-06 4:30
techno_brains17-Feb-06 4:30 
AnswerRe: Spanning Tree Algorithm Implementation Pin
Cedric Moonen17-Feb-06 9:30
Cedric Moonen17-Feb-06 9:30 
AnswerRe: Spanning Tree Algorithm Implementation Pin
George L. Jackson17-Feb-06 12:07
George L. Jackson17-Feb-06 12:07 
QuestionGetting a list of controls from another process (application) Pin
Virtek17-Feb-06 3:21
Virtek17-Feb-06 3:21 
AnswerRe: Getting a list of controls from another process (application) Pin
Virtek17-Feb-06 7:38
Virtek17-Feb-06 7:38 
QuestionNumbering Puzzle in C++ Pin
chrizpl17-Feb-06 1:47
chrizpl17-Feb-06 1:47 
AnswerRe: Numbering Puzzle in C++ Pin
toxcct17-Feb-06 1:51
toxcct17-Feb-06 1:51 
GeneralRe: Numbering Puzzle in C++ Pin
chrizpl17-Feb-06 2:15
chrizpl17-Feb-06 2:15 
GeneralRe: Numbering Puzzle in C++ Pin
toxcct17-Feb-06 2:18
toxcct17-Feb-06 2:18 
GeneralRe: Numbering Puzzle in C++ Pin
chrizpl17-Feb-06 2:36
chrizpl17-Feb-06 2:36 
GeneralRe: Numbering Puzzle in C++ Pin
Cedric Moonen17-Feb-06 2:47
Cedric Moonen17-Feb-06 2:47 
QuestionHow to understand the macro Base_Offset? Pin
uglystone17-Feb-06 0:53
uglystone17-Feb-06 0:53 
AnswerRe: How to understand the macro Base_Offset? Pin
toxcct17-Feb-06 4:28
toxcct17-Feb-06 4:28 

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.