KOFIOWUSU847's blog

By KOFIOWUSU847, 11 years ago, In English

include

include

using namespace std;

void printstudent(student *Student);

typedef struct { char name[50];

}student;

int main() { student student1; strcpy(student1.name,"Douglas Brown"); printstudent(&student 1); } void printstudent(student *Student) { cout<name<<endl; }

Full text and comments »

  • Vote: I like it
  • -17
  • Vote: I do not like it