Skip to content

Instantly share code, notes, and snippets.

@pjastr
Created February 28, 2021 12:01
Show Gist options
  • Save pjastr/516ec42e5cffa625b4958d54c899b272 to your computer and use it in GitHub Desktop.
Save pjastr/516ec42e5cffa625b4958d54c899b272 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
int b=2;
b=a+3;
b++;
--a;
int c=a*b;
c*=1;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment