home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / alde_c / misc / lib / csource / oneint.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-01  |  230 b   |  11 lines

  1. main()
  2. {
  3. int index;
  4.    index = 13;
  5.    printf("The value of the index is %d\n",index);
  6.    index = 27;
  7.    printf("The value of the index is %d\n",index);
  8.    index = 10;
  9.    printf("The value of the index is %d\n",index);
  10. }
  11.