Click here to Skip to main content
15,884,388 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Multiple .cpp files Pin
gamefreak22915-Apr-10 22:45
gamefreak22915-Apr-10 22:45 
GeneralRe: Multiple .cpp files Pin
KarstenK5-Apr-10 22:59
mveKarstenK5-Apr-10 22:59 
GeneralRe: Multiple .cpp files Pin
gamefreak22915-Apr-10 23:40
gamefreak22915-Apr-10 23:40 
GeneralRe: Multiple .cpp files Pin
Emilio Garavaglia6-Apr-10 2:20
Emilio Garavaglia6-Apr-10 2:20 
GeneralRe: Multiple .cpp files Pin
gamefreak22916-Apr-10 6:47
gamefreak22916-Apr-10 6:47 
GeneralRe: Multiple .cpp files Pin
Emilio Garavaglia6-Apr-10 20:36
Emilio Garavaglia6-Apr-10 20:36 
QuestionPermutations with repetition Pin
MsmVc5-Apr-10 20:59
MsmVc5-Apr-10 20:59 
AnswerRe: Permutations with repetition Pin
CPallini5-Apr-10 21:49
mveCPallini5-Apr-10 21:49 
You can produce the sequence (in slight different order) this way:
#include <stdio.h>
#include <string.h>
int main()
{
  const char sSequence[]="abcd";
  int len;
  len = (int) strlen(sSequence);
  for (int i=0; i<len; i++)
    for (int j=0; i<len; j++)
      printf("%c%c\n", sSequence[i], sSequence[j]);
}

Smile | :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

GeneralRe: Permutations with repetition [modified] Pin
MsmVc5-Apr-10 21:58
MsmVc5-Apr-10 21:58 
GeneralRe: Permutations with repetition Pin
CPallini5-Apr-10 22:06
mveCPallini5-Apr-10 22:06 
GeneralRe: Permutations with repetition Pin
MsmVc5-Apr-10 22:07
MsmVc5-Apr-10 22:07 
GeneralRe: Permutations with repetition Pin
MsmVc6-Apr-10 0:00
MsmVc6-Apr-10 0:00 
GeneralRe: Permutations with repetition Pin
CPallini6-Apr-10 0:21
mveCPallini6-Apr-10 0:21 
GeneralRe: Permutations with repetition Pin
MsmVc8-Apr-10 0:42
MsmVc8-Apr-10 0:42 
GeneralRe: Permutations with repetition Pin
CPallini8-Apr-10 3:25
mveCPallini8-Apr-10 3:25 
QuestionCFile Dialog Crash on Window Server 2008. Pin
Le@rner5-Apr-10 18:22
Le@rner5-Apr-10 18:22 
AnswerRe: CFile Dialog Crash on Window Server 2008. Pin
KarstenK5-Apr-10 22:42
mveKarstenK5-Apr-10 22:42 
GeneralRe: CFile Dialog Crash on Window Server 2008. Pin
Le@rner7-Apr-10 20:49
Le@rner7-Apr-10 20:49 
GeneralRe: CFile Dialog Crash on Window Server 2008. Pin
KarstenK7-Apr-10 22:38
mveKarstenK7-Apr-10 22:38 
QuestionStack overflow Pin
browneyes865-Apr-10 16:00
browneyes865-Apr-10 16:00 
QuestionRe: Stack overflow Pin
David Crow5-Apr-10 16:31
David Crow5-Apr-10 16:31 
AnswerRe: Stack overflow Pin
Luc Pattyn5-Apr-10 16:52
sitebuilderLuc Pattyn5-Apr-10 16:52 
GeneralRe: Stack overflow Pin
Tim Craig5-Apr-10 18:20
Tim Craig5-Apr-10 18:20 
GeneralRe: Stack overflow Pin
Luc Pattyn5-Apr-10 18:31
sitebuilderLuc Pattyn5-Apr-10 18:31 
GeneralRe: Stack overflow Pin
Luc Pattyn5-Apr-10 18:31
sitebuilderLuc Pattyn5-Apr-10 18:31 

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.