C++primer plus sixth edition after class programming practice answers 10.7__linux

Source: Internet
Author: User
Header file
#ifndef plorg_h_
#define PLORG_H_

const int limit=19;

Class plorg
{
private:
	char name[limit];
	int CI;
Public:
	plorg (const char *str= "Plorga");
	void Setci (int n);
	void showplorg () const;

#endif

#include <iostream>
#include "plorg.h"

using namespace std;

plorg::p lorg (const char *str)
{
	strcpy (NAME,STR);
	ci=50;
}

void Plorg::setci (int n)
{
	ci=n;
}

void plorg::showplorg () const
{
	cout<< "name=" <<name<<endl;
	cout<< "ci=" <<CI<<endl;
}

#include <iostream>
#include "plorg.h"

using namespace std;

void Main ()
{
	plorg A;
	A.showplorg ();
	Plorg B ("Sun");
	B.showplorg ();
	B.setci (a);
	B.showplorg ();

}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.