Created
May 5, 2017 22:34
-
-
Save marcoscastro/7d63bae110ea2183439f86f7baec5ea7 to your computer and use it in GitHub Desktop.
Definição de uma classe - C++
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Pessoa | |
| { | |
| private: | |
| char nome[100]; | |
| int idade; | |
| float peso; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment