Click here to Skip to main content
15,892,005 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Changing Label Size/Font help Pin
CPallini21-Jan-10 3:23
mveCPallini21-Jan-10 3:23 
GeneralRe: Changing Label Size/Font help Pin
Dragondima21-Jan-10 3:26
Dragondima21-Jan-10 3:26 
GeneralRe: Changing Label Size/Font help Pin
CPallini21-Jan-10 11:28
mveCPallini21-Jan-10 11:28 
GeneralRe: Changing Label Size/Font help Pin
Dragondima22-Jan-10 3:03
Dragondima22-Jan-10 3:03 
QuestionReading and saving a class instance pointer [modified] Pin
CODEPC21-Jan-10 3:08
CODEPC21-Jan-10 3:08 
AnswerRe: Saving a class instance pointer Pin
Cedric Moonen21-Jan-10 3:12
Cedric Moonen21-Jan-10 3:12 
AnswerRe: Saving a class instance pointer Pin
CPallini21-Jan-10 3:15
mveCPallini21-Jan-10 3:15 
Questionchar str[] help Pin
xivShin21-Jan-10 1:10
xivShin21-Jan-10 1:10 
Hi I all a newbie here. need help with this:

char *strtok( char *str1, const char *str2 );
char str[] = "now # is the time for all # good men to come to the # aid of their country";
char delims[] = "#";
char *result = NULL;
result = strtok( str, delims );
while( result != NULL )
{
printf( "result is \"%s\"\n", result );
result = strtok( NULL, delims );
}

for char str[] , how can i assign it to a variable b? so far i get this error:
readin.cpp:34: error: initializer fails to determine size of ‘str

Thanks alot.
AnswerRe: char str[] help Pin
CPallini21-Jan-10 1:28
mveCPallini21-Jan-10 1:28 
AnswerRe: char str[] help Pin
Garth J Lancaster21-Jan-10 1:35
professionalGarth J Lancaster21-Jan-10 1:35 
AnswerRe: char str[] help Pin
Raj Indian21-Jan-10 1:35
Raj Indian21-Jan-10 1:35 
GeneralRe: char str[] help Pin
CPallini21-Jan-10 1:36
mveCPallini21-Jan-10 1:36 
AnswerRe: char str[] help Pin
loyal ginger21-Jan-10 1:38
loyal ginger21-Jan-10 1:38 
AnswerRe: char str[] help Pin
Richard MacCutchan21-Jan-10 2:29
mveRichard MacCutchan21-Jan-10 2:29 
QuestionCListCtrl text underline? Pin
Arrin21-Jan-10 0:15
Arrin21-Jan-10 0:15 
AnswerRe: CListCtrl text underline? Pin
Raj Indian21-Jan-10 1:43
Raj Indian21-Jan-10 1:43 
QuestionShellExecute Pin
john563220-Jan-10 23:25
john563220-Jan-10 23:25 
AnswerRe: ShellExecute Pin
Richard MacCutchan20-Jan-10 23:43
mveRichard MacCutchan20-Jan-10 23:43 
GeneralRe: ShellExecute Pin
john563221-Jan-10 0:25
john563221-Jan-10 0:25 
GeneralRe: ShellExecute Pin
Garth J Lancaster21-Jan-10 1:06
professionalGarth J Lancaster21-Jan-10 1:06 
GeneralRe: ShellExecute Pin
Richard MacCutchan21-Jan-10 2:22
mveRichard MacCutchan21-Jan-10 2:22 
QuestionTracking balloon tooltip always appears below its tracking point Pin
sashoalm20-Jan-10 23:21
sashoalm20-Jan-10 23:21 
QuestionwaveOutWrite functions properly under WinXP but not under Win7 Pin
Markus Eschbacher20-Jan-10 23:05
Markus Eschbacher20-Jan-10 23:05 
QuestionRe: waveOutWrite functions properly under WinXP but not under Win7 Pin
CPallini20-Jan-10 23:16
mveCPallini20-Jan-10 23:16 
AnswerRe: waveOutWrite functions properly under WinXP but not under Win7 Pin
Markus Eschbacher21-Jan-10 1:19
Markus Eschbacher21-Jan-10 1:19 

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.