Skip to content

Instantly share code, notes, and snippets.

@Cee
Created June 19, 2014 05:18
Show Gist options
  • Save Cee/47a952a3bbc6e9d8ca53 to your computer and use it in GitHub Desktop.
Save Cee/47a952a3bbc6e9d8ca53 to your computer and use it in GitHub Desktop.
2+2=5
#include "stdio.h"
int main(){
int a = 2;
int b = 2; a++;
printf("2 + 2 = %d\n", a + b);
return 0;
}
@billxc
Copy link

billxc commented Jun 19, 2014

大神请收下我的膝盖

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment