写一张程序中内存变量的列表......超级菜鸟问题。。。求解
写一张程序中内存变量的列表,根据下列程序填写内存变量表变化的情况。void main()
{
double base;
double height;
double area;
base=3.5;
height=6.7;
area=base*height/2.0;
printf("The area of the triangle is %f\n",area);
}
该怎么写???题的意思我还没搞懂。。。。。
[ 本帖最后由 xinshi886 于 2011-11-14 21:08 编辑 ]