这个程序总是运行显示 error C2440: '=' : cannot convert from 'struct tm *' to 'long'#include<conio.h>
#include<iostream.h>void main()
{
double a,b,sum;
time_t current_time;
struct tm *current_tm; time(&current_time);
current_time=gmtime(&current_time);
cout<<"VC can use <iostream.h>";
cout<<"VC can use <time.h>";
printf("Greenwich Mean Time=%s\n",asctime(current_tm));
cout<<"VC can use <stdio.h>\n";
a=123.0;
b=456.0;
sum=fmod(b,a);
printf("sum is &e\n",sum);
cout<<"please input a char to test <conio.h>\n";
getch();
cout<<"VC can use <conio.h>\n";
getch();
}是哪里有问题啊?