CHGTYP.CPP
资源名称:C++100.rar [点击查看]
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:
Windows编程
开发平台:
Visual C++
- #include <stdio.h>
- #include <conio.h>
- int main(void)
- {
- int NUM_INT=65;
- float NUM_FLOAT=11.11;
- char CH_CHAR='A';
- printf("n 65 (int) ---> %c (char) ",(char)NUM_INT);
- printf("n 11.11 (float) ---> %d (int)",(int)NUM_FLOAT);
- printf("n A (char) ---> %d (int)",(int)CH_CHAR);
- getch();
- return 0;
- }