why doesnt this work?
From: Developwebsites (developwebsites_at_aol.com)
Date: 12/14/03
- Next message: Moonlit: "Re: why doesnt this work?"
- Previous message: Thomas Wintschel: "Re: Clarification of the scope of this group"
- Next in thread: Moonlit: "Re: why doesnt this work?"
- Reply: Moonlit: "Re: why doesnt this work?"
- Reply: someone else: "Re: why doesnt this work?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 14 Dec 2003 18:33:21 GMT
#ifndef PERSON_H
#define PERSON_H
#include<iostream>
#include<iomanip>
#include<string>
class Person {
protected:
char name[12];
name = jamesbond;
public:
Person();
void Print();
};//close Person
#endif
or this:
#include "person.h"
Person::Person()
{
name = "jamesbond";
cout<<"The student's name is: "<<name;
}
--------------------------------------------------
*** E-mail is shut off ***
--------------------------------------------------
- Next message: Moonlit: "Re: why doesnt this work?"
- Previous message: Thomas Wintschel: "Re: Clarification of the scope of this group"
- Next in thread: Moonlit: "Re: why doesnt this work?"
- Reply: Moonlit: "Re: why doesnt this work?"
- Reply: someone else: "Re: why doesnt this work?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]