Skip to content

Instantly share code, notes, and snippets.

@shumon84
Created March 20, 2017 05:51
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 shumon84/43d36fa29e66e5514066f3307650b2fa to your computer and use it in GitHub Desktop.
Save shumon84/43d36fa29e66e5514066f3307650b2fa to your computer and use it in GitHub Desktop.
#include<stdio.h>
void hoge(int x,int y,int z)
{
printf("x = %d\n",x);
printf("y = %d\n",y);
printf("z = %d\n",z);
}
int main(void)
{
int a=0;
hoge(a,a=10,a*=5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment