Skip to content

Instantly share code, notes, and snippets.

@aledruetta
Created August 24, 2019 12:55
Show Gist options
  • Select an option

  • Save aledruetta/ad62e0891f71b3046e774befa8dffbe6 to your computer and use it in GitHub Desktop.

Select an option

Save aledruetta/ad62e0891f71b3046e774befa8dffbe6 to your computer and use it in GitHub Desktop.
// usando o operador seta
ptr->membro = valor;
// usando a forma tradicional
(*ptr).membro = valor;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment