Skip to content

Instantly share code, notes, and snippets.

@renepardon
Created November 12, 2012 22:05
Show Gist options
  • Save renepardon/4062301 to your computer and use it in GitHub Desktop.
Save renepardon/4062301 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, const char *argv[])
{
signed char c = 1;
c = --c - c--;
printf("c: %d\n", c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment