Skip to content

Instantly share code, notes, and snippets.

@marcoscastro
Created May 5, 2017 22:34
Show Gist options
  • Save marcoscastro/4849eda4016d120bf74d05ddba242c60 to your computer and use it in GitHub Desktop.
Save marcoscastro/4849eda4016d120bf74d05ddba242c60 to your computer and use it in GitHub Desktop.
Definição de uma classe - C++
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