《操作系统》的实验代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
165 B

  1. void X(int b) {
  2. if (b==1){
  3. printf("X:: b is 1!\n");
  4. }else{
  5. printf("X:: b is not 1!\n");
  6. }
  7. }
  8. int main(int argc, char * argv){
  9. int a=2;
  10. X(a);
  11. }