Guest User

Untitled

a guest
Jan 23rd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. //int a;//声明
  5. int b=10;//定义 int b ; b=10;
  6. printf("%d\n\n",b);
  7. b=20;
  8. printf("%d\n",b);
  9. return 0;
Add Comment
Please, Sign In to add comment