Click here to Skip to main content
15,925,255 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Bad bad service :-( Pin
Nish Nishant12-May-02 19:24
sitebuilderNish Nishant12-May-02 19:24 
GeneralWanna About Proxy Pin
chaolong12-May-02 16:47
chaolong12-May-02 16:47 
GeneralRe: Wanna About Proxy Pin
Nish Nishant12-May-02 17:22
sitebuilderNish Nishant12-May-02 17:22 
GeneralRe: Wanna About Proxy Pin
chaolong12-May-02 22:59
chaolong12-May-02 22:59 
GeneralRe: Wanna About Proxy Pin
Sameer Maggon12-May-02 21:24
Sameer Maggon12-May-02 21:24 
GeneralRe: Wanna About Proxy Pin
chaolong12-May-02 23:08
chaolong12-May-02 23:08 
GeneralRe: Wanna About Proxy Pin
Sameer Maggon12-May-02 23:06
Sameer Maggon12-May-02 23:06 
GeneralFunction() question... Pin
SilverShalkin12-May-02 14:41
SilverShalkin12-May-02 14:41 
ok... a functoin is declaring somthng like

voide SetName(char Name)
{
}
correct?

then if you want to use that in your program you could do somthing like
int main()
{
SetName("Judy")
return 0;
}

now... even though this wont do anything... "because there isnt anything int eh SetName function... this would work right?

i declared my void SetName(char Name); in a header class named Student so:

void Student::SetName(char Name);
{
}

int main()
{
char SName[32];
cin >> SName;
SetName(SName);

return 0;
}

wouldnt this work... what am i forgetting... i keep getting a undeclared identities thing.

Thanks all!

~SilverShalkin

Rose | [Rose]
GeneralRe: Function() question... Pin
Rama Krishna Vavilala12-May-02 14:52
Rama Krishna Vavilala12-May-02 14:52 
GeneralRe: Function() question... Pin
Paul M Watt12-May-02 18:56
mentorPaul M Watt12-May-02 18:56 
GeneralRe: Function() question... Pin
Nish Nishant12-May-02 14:56
sitebuilderNish Nishant12-May-02 14:56 
GeneralRe: Function() question... Pin
Christian Graus12-May-02 15:05
protectorChristian Graus12-May-02 15:05 
GeneralRe: Function() question... Pin
Nish Nishant12-May-02 15:01
sitebuilderNish Nishant12-May-02 15:01 
GeneralRe: Function() question... Pin
Christian Graus12-May-02 15:03
protectorChristian Graus12-May-02 15:03 
GeneralRe: Function() question... Pin
Rama Krishna Vavilala12-May-02 15:06
Rama Krishna Vavilala12-May-02 15:06 
GeneralRe: Function() question... Pin
Christian Graus12-May-02 15:12
protectorChristian Graus12-May-02 15:12 
GeneralRe: Function() question... Pin
Nish Nishant12-May-02 15:18
sitebuilderNish Nishant12-May-02 15:18 
GeneralRe: Function() question... Pin
Nish Nishant12-May-02 15:19
sitebuilderNish Nishant12-May-02 15:19 
GeneralRe: Function() question... Pin
SilverShalkin12-May-02 15:22
SilverShalkin12-May-02 15:22 
GeneralRe: Function() question... Pin
Christian Graus12-May-02 15:27
protectorChristian Graus12-May-02 15:27 
GeneralRe: Function() question... Pin
SilverShalkin12-May-02 15:58
SilverShalkin12-May-02 15:58 
GeneralRe: Function() question... Pin
Christian Graus12-May-02 16:06
protectorChristian Graus12-May-02 16:06 
GeneralI'm Done!!! Pin
Steve L.12-May-02 14:32
Steve L.12-May-02 14:32 
GeneralRe: I'm Done!!! Pin
Brian Olej12-May-02 15:03
Brian Olej12-May-02 15:03 
GeneralRe: I'm Done!!! Pin
Alexandru Savescu13-May-02 3:54
Alexandru Savescu13-May-02 3:54 

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.