⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 phrase.h

📁 Since the field of object oriented programming is probably new to you, you will find that there is a
💻 H
字号:
                                 // Chapter 6 - Program 11 - PHRASE.H
#ifndef PHRASE_H
#define PHRASE_H

class phrase 
{  
   char verb[10];
   char noun[10];
   static char full_phrase[25];
public:
   inline phrase(void);
   inline void set_noun(char *in_noun);
   inline void set_verb(char *in_verb);
   inline char *get_phrase(void);   
};

#include "phrase.inl"

#endif



// Result of execution
//
// (This file cannot be executed)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -