Skip to content

Instantly share code, notes, and snippets.

@MeteorVE
Created January 20, 2016 15:44
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 MeteorVE/306b0b9f96e2f7696baf to your computer and use it in GitHub Desktop.
Save MeteorVE/306b0b9f96e2f7696baf to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
int x; // x是一個變數
x = 5;
printf("範例 : \n");
printf(" x的數值 : %d\n",x);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment