Skip to content

Instantly share code, notes, and snippets.

@tkovs
Created February 27, 2015 00:04
Show Gist options
  • Save tkovs/b00ebda531958c55f986 to your computer and use it in GitHub Desktop.
Save tkovs/b00ebda531958c55f986 to your computer and use it in GitHub Desktop.
Erro simples de C
#include <stdio.h>
int main()
{
short x, y;
x = 666;
y = 666;
printf ("%d %d\n", x, y);
scanf ("%d", &y);
printf ("%d %d\n", x, y);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment