Skip to content

Instantly share code, notes, and snippets.

@tmiz
Created March 8, 2011 07:52
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 tmiz/860004 to your computer and use it in GitHub Desktop.
Save tmiz/860004 to your computer and use it in GitHub Desktop.
C Quiz 001
#include <stdio.h>
int main() {
if ((int) -1 < (unsigned int) 5) {
printf("(A)\n");
} else {
printf("(B)\n");
}
return 0;
}
// Which is output?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment