1. //
    2. // main.c
    3. // test_a1
    4. //
    5. // Created by dezhu on 2021/12/27.
    6. // Copyright © 2021年 dezhu. All rights reserved.
    7. //
    8. #include <stdio.h>
    9. #include <stdlib.h>
    10. void change(int *p){
    11. *p=10;
    12. }
    13. int main(int argc, const char * argv[]) {
    14. // insert code here...
    15. int a;
    16. printf("%p\n",&a);
    17. int b=5;
    18. change(&b);
    19. printf("%d\n",&b);
    20. printf("Hello, World!\n");
    21. return 0;
    22. }
    1. //
    2. // main.c
    3. // test_a4
    4. //
    5. // Created by dezhu on 2021/12/27.
    6. // Copyright © 2021年 dezhu. All rights reserved.
    7. //
    8. #include <stdio.h>
    9. #include <stdlib.h>
    10. int main(int argc, const char * argv[]) {
    11. // insert code here...
    12. int read[10] = {0,1,2,3,4,5,-1};
    13. int *p = read;
    14. while(*p!=-1){
    15. //printf("%d\n",*p++);
    16. printf("%p\n",*p++);
    17. }
    18. system("pause");
    19. printf("Hello, World!\n");
    20. return 0;
    21. }