Skip to content

Instantly share code, notes, and snippets.

@jaxbot
Created August 13, 2014 00:34
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 jaxbot/fe72fb254ca72002cd8a to your computer and use it in GitHub Desktop.
Save jaxbot/fe72fb254ca72002cd8a to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
#define true 1
#define false 0
int main(void) {
int ptr = 4;
int feelings = (ptr + 1) ? true : false;
printf("%d\n", feelings);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment