People often ask me "How did you learn how to hack?" The answer: by reading. This page is a collection of the blog posts and other articles that I have accumulated over the years of my journey. Enjoy!
int main(){
int x = -10;
unsigned int y = 5;
if(x > y)
printf("x is greater than y"\n);
else
printf("y is less than x\n";
}
x is changed to an unsigned integer. Regarldess if this uses the - as a part of the number or not, it becomes bigger than 5.