Skip to content

Instantly share code, notes, and snippets.

@rogerioagjr
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogerioagjr/705f02f1c338a6b061f0 to your computer and use it in GitHub Desktop.
Save rogerioagjr/705f02f1c338a6b061f0 to your computer and use it in GitHub Desktop.
aluno
struct aluno{ // declaro a struct aluno
// e declaro seus dois membros:
char nome[30]; // o vetor de char "nome", de 30 posições
double nota; // e a double "nota"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment