C/C++语言 利用宏定义 测试隐式类型转换(全)
#include <stdio.h>
#include <stdint.h>
#include
#include
using namespace std;
void Type_conversion();
int main()
{
unsigned long ulon1 = 2;
signed short ssho = -3;
signed char scha = -3;
c...
原创
2019-11-19 22:59:31 ·
469 阅读 ·
0 评论