Skip to content

Instantly share code, notes, and snippets.

@sofhiasouza
Created June 10, 2019 16:44
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 sofhiasouza/9ecb08fe963570844144f5060855a068 to your computer and use it in GitHub Desktop.
Save sofhiasouza/9ecb08fe963570844144f5060855a068 to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
struct ponto
{
int x, y;
};
int main()
{
ponto a;
a.x = 1;
a.y = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment