Skip to content

Instantly share code, notes, and snippets.

@mikhailramalho
Created October 13, 2015 10:13
Show Gist options
  • Save mikhailramalho/c304137986053265fead to your computer and use it in GitHub Desktop.
Save mikhailramalho/c304137986053265fead to your computer and use it in GitHub Desktop.
struct X { int a; };
typedef const _Bool inteiro;
const unsigned int d = 10;
const unsigned int c = d;
const unsigned int f = d;
int fun4(int x, int y) { return x/f; }
int main()
{
int x;
x = fun4(1,0);
}
struct X { int a; };
typedef const _Bool inteiro;
const unsigned int d = 10;
const unsigned int c = d;
int fun4(int x, int y) { return x/c; }
int main()
{
int x;
x = fun4(1,0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment