Skip to content

Instantly share code, notes, and snippets.

@aattk
Created April 1, 2021 14:57
Show Gist options
  • Select an option

  • Save aattk/fed3b7ae7454cd3ca60ed94334b86af8 to your computer and use it in GitHub Desktop.

Select an option

Save aattk/fed3b7ae7454cd3ca60ed94334b86af8 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
int a = 5;
int b = 12;
printf("Old > A : %d B: %d\n",a,b);
a = a * b;
b = a / b;
a = a / b;
printf("New > A : %d B: %d",a,b);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment