Click here to Skip to main content
16,011,374 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalopening word and passing strings to a word template doc Pin
JPARR28-Jun-05 22:40
JPARR28-Jun-05 22:40 
GeneralRe: opening word and passing strings to a word template doc Pin
Cedric Moonen28-Jun-05 22:45
Cedric Moonen28-Jun-05 22:45 
GeneralNetwork Printers Pin
manan_be_it28-Jun-05 22:21
manan_be_it28-Jun-05 22:21 
GeneralRe: Network Printers Pin
Blake V. Miller29-Jun-05 19:03
Blake V. Miller29-Jun-05 19:03 
GeneralHey guys, I need help again :-( Pin
Psych0hans28-Jun-05 22:11
Psych0hans28-Jun-05 22:11 
GeneralRe: Hey guys, I need help again :-( Pin
Cedric Moonen28-Jun-05 22:15
Cedric Moonen28-Jun-05 22:15 
GeneralRe: Hey guys, I need help again :-( Pin
Psych0hans28-Jun-05 22:18
Psych0hans28-Jun-05 22:18 
GeneralRe: Hey guys, I need help again :-( Pin
Cedric Moonen28-Jun-05 22:24
Cedric Moonen28-Jun-05 22:24 
Psych0hans wrote:
void displayString(char StringArray[])
{
for(int i = 0; stringArray[i] != 0; i++)
{
cout << stringArray[i];
}
}


There is a mismatch between StringArray in the function arguments and stringArray used in the function. Take care of the upper-case of the names.

Change it to:

void displayString(char StringArray[])<br />
{<br />
for(int i = 0; StringArray[i] != 0; i++)<br />
{<br />
cout << StringArray[i];<br />
}<br />
}<br />

GeneralRe: Hey guys, I need help again :-( Pin
Psych0hans28-Jun-05 22:44
Psych0hans28-Jun-05 22:44 
GeneralRe: Hey guys, I need help again :-( Pin
toxcct29-Jun-05 0:19
toxcct29-Jun-05 0:19 
GeneralRe: Hey guys, I need help again :-( Pin
Psych0hans29-Jun-05 0:36
Psych0hans29-Jun-05 0:36 
GeneralRe: Hey guys, I need help again :-( Pin
toxcct29-Jun-05 1:04
toxcct29-Jun-05 1:04 
GeneralRe: Hey guys, I need help again :-( Pin
Psych0hans29-Jun-05 1:06
Psych0hans29-Jun-05 1:06 
GeneralRe: Hey guys, I need help again :-( Pin
toxcct29-Jun-05 1:11
toxcct29-Jun-05 1:11 
GeneralRe: Hey guys, I need help again :-( Pin
Rage29-Jun-05 1:16
professionalRage29-Jun-05 1:16 
GeneralRe: Hey guys, I need help again :-( Pin
Psych0hans29-Jun-05 1:29
Psych0hans29-Jun-05 1:29 
GeneralGet the full name of the computer and the domain of the network Pin
akayoku28-Jun-05 22:07
akayoku28-Jun-05 22:07 
GeneralRe: Get the full name of the computer and the domain of the network Pin
ThatsAlok28-Jun-05 22:55
ThatsAlok28-Jun-05 22:55 
GeneralRe: Get the full name of the computer and the domain of the network Pin
akayoku28-Jun-05 23:36
akayoku28-Jun-05 23:36 
GeneralRe: Get the full name of the computer and the domain of the network Pin
ThatsAlok28-Jun-05 23:46
ThatsAlok28-Jun-05 23:46 
GeneralRe: Get the full name of the computer and the domain of the network Pin
David Crow29-Jun-05 3:30
David Crow29-Jun-05 3:30 
GeneralMS Project 2003 XML Option Pin
mksreenivas28-Jun-05 22:04
mksreenivas28-Jun-05 22:04 
GeneralPlugin question Pin
Steve Messer28-Jun-05 21:42
Steve Messer28-Jun-05 21:42 
GeneralRe: Plugin question Pin
Cedric Moonen28-Jun-05 22:04
Cedric Moonen28-Jun-05 22:04 
GeneralRe: Plugin question Pin
Steve Messer28-Jun-05 22:15
Steve Messer28-Jun-05 22:15 

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.