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

C / C++ / MFC

 
QuestionStore String in Array Pin
LearnVC++MFC25-Sep-08 20:41
LearnVC++MFC25-Sep-08 20:41 
AnswerRe: Store String in Array Pin
Cedric Moonen25-Sep-08 20:45
Cedric Moonen25-Sep-08 20:45 
GeneralRe: Store String in Array Pin
LearnVC++MFC25-Sep-08 20:50
LearnVC++MFC25-Sep-08 20:50 
GeneralRe: Store String in Array Pin
santhoshv8425-Sep-08 20:58
santhoshv8425-Sep-08 20:58 
GeneralRe: Store String in Array Pin
LearnVC++MFC25-Sep-08 21:25
LearnVC++MFC25-Sep-08 21:25 
GeneralRe: Store String in Array Pin
CPallini25-Sep-08 23:54
mveCPallini25-Sep-08 23:54 
GeneralRe: Store String in Array Pin
LearnVC++MFC26-Sep-08 0:38
LearnVC++MFC26-Sep-08 0:38 
GeneralRe: Store String in Array Pin
CPallini26-Sep-08 1:13
mveCPallini26-Sep-08 1:13 
CString a[100];
CString b;
int i=0;
b = "As";
a[i] = b;
i = (i + 1) % 100;
b = "Cs";
a[i] = b;
i = (i + 1) % 100;
//..

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: Store String in Array Pin
Cedric Moonen25-Sep-08 21:04
Cedric Moonen25-Sep-08 21:04 
GeneralRe: Store String in Array Pin
LearnVC++MFC25-Sep-08 21:29
LearnVC++MFC25-Sep-08 21:29 
GeneralRe: Store String in Array Pin
Cedric Moonen25-Sep-08 21:36
Cedric Moonen25-Sep-08 21:36 
GeneralRe: Store String in Array Pin
LearnVC++MFC25-Sep-08 21:41
LearnVC++MFC25-Sep-08 21:41 
GeneralRe: Store String in Array Pin
LearnVC++MFC25-Sep-08 21:44
LearnVC++MFC25-Sep-08 21:44 
GeneralRe: Store String in Array Pin
Cedric Moonen25-Sep-08 21:49
Cedric Moonen25-Sep-08 21:49 
GeneralRe: Store String in Array Pin
LearnVC++MFC25-Sep-08 22:03
LearnVC++MFC25-Sep-08 22:03 
GeneralRe: Store String in Array Pin
Cedric Moonen25-Sep-08 22:07
Cedric Moonen25-Sep-08 22:07 
GeneralRe: Store String in Array Pin
LearnVC++MFC25-Sep-08 22:10
LearnVC++MFC25-Sep-08 22:10 
GeneralRe: Store String in Array Pin
Michael Schubert25-Sep-08 23:05
Michael Schubert25-Sep-08 23:05 
GeneralRe: Store String in Array Pin
Cedric Moonen25-Sep-08 23:15
Cedric Moonen25-Sep-08 23:15 
GeneralRe: Store String in Array Pin
LearnVC++MFC26-Sep-08 0:05
LearnVC++MFC26-Sep-08 0:05 
GeneralRe: Store String in Array Pin
Michael Schubert26-Sep-08 0:10
Michael Schubert26-Sep-08 0:10 
GeneralRe: Store String in Array Pin
LearnVC++MFC26-Sep-08 0:20
LearnVC++MFC26-Sep-08 0:20 
GeneralRe: Store String in Array Pin
Michael Schubert26-Sep-08 1:03
Michael Schubert26-Sep-08 1:03 
GeneralRe: Store String in Array Pin
Cedric Moonen26-Sep-08 1:04
Cedric Moonen26-Sep-08 1:04 
GeneralRe: Store String in Array Pin
Mark Schumann26-Sep-08 10:32
Mark Schumann26-Sep-08 10:32 

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.