CHGTYP.CPP
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <stdio.h>
  2. #include <conio.h>
  3. int main(void)
  4. {
  5. int NUM_INT=65;
  6. float NUM_FLOAT=11.11;
  7. char CH_CHAR='A';
  8.     printf("n 65 (int) ---> %c (char) ",(char)NUM_INT);
  9. printf("n 11.11 (float) ---> %d (int)",(int)NUM_FLOAT);
  10. printf("n A (char) ---> %d (int)",(int)CH_CHAR);
  11. getch();
  12. return 0;
  13. }