C语言中watches是空白的?
C语言学习中,打开watches里面是空白的
code::blocks 17.12 windows系统,网上没有找到处理的方法
代码如下:
#include <stdio.h>
#include <stdlib.h>
int main()
{
char ch;short a;
int b;
long c;
float d;
double e;
ch = 'a';
a = 1;
b = 2;
c = 3;
d = 1.5;
e = 1.5;
printf("%d\n", sizeof(ch));
printf("%d\n", sizeof(a));
printf("%d\n", sizeof(b));
printf("%d\n", sizeof(c));
printf("%d\n", sizeof(d));
printf("%d\n", sizeof(e));
return 0;
}
想要得到如下红框处的样子,求大佬们指点!谢谢!
回答:
我也遇到过这个问题了?
以上是 C语言中watches是空白的? 的全部内容, 来源链接: utcz.com/p/194816.html