From d8a44d691e59fcedf21ecfc7a62980e1608aad27 Mon Sep 17 00:00:00 2001 From: yashikabadaya <34155789+yashikabadaya@users.noreply.github.com> Date: Sat, 13 Apr 2019 22:42:56 +0530 Subject: [PATCH] Commit message (#33334) --- guide/english/cplusplus/object-oriented-programming/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/cplusplus/object-oriented-programming/index.md b/guide/english/cplusplus/object-oriented-programming/index.md index 09f955d5d3..0d604ea6f9 100644 --- a/guide/english/cplusplus/object-oriented-programming/index.md +++ b/guide/english/cplusplus/object-oriented-programming/index.md @@ -32,7 +32,7 @@ When a program is executed the objects interact by sending messages to one anoth Each object contains data and code to manipulate the data. Objects can interact without having to know details of each others data or code. It is sufficient to know the type of message accepted and type of response returned by the objects. ### Class: -Class is a blueprint of data and functions or methods. Class does not take any space. +Class is a blueprint of data and functions or methods. Class does not take any space. A class has three access modifiers- private, public and protected. The default access modifier is private. ```cpp class class_name {