USEADDR.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void main(void)
  3.  {
  4.    int a = 1, b = 2;
  5.    int *i_pointer;
  6.    // Assign an address
  7.    i_pointer = &a;
  8.    // Change the value pointed to by i_pointer to 5
  9.    *i_pointer = 5;
  10.    // Display the value
  11.    printf("Value pointed to by i_pointer is %d the variable a is %dn",
  12.      *i_pointer, a);
  13.    // Assign the value
  14.    b = *i_pointer;
  15.    printf("Value of b is %dn", b);
  16.    printf("Value of i_pointer %xn", i_pointer);
  17.  }