结构体,函数,被认为木马
#include<stdio.h>struct Employee
{
int idNum;
double payRate;
double hours;
};
struct Employee getValues();
void main()
{
struct Employee emp;
emp = getValues();
printf("%d\n", emp.idNum);
printf("%5.2f\n", emp.payRate);
printf("%5.2f\n", emp.hours);
}
struct Employee getValues()
{
struct Employee newemp;
newemp.idNum = 6789;
newemp.payRate = 16.25;
newemp.hours = 38.0;
return (newemp);
}
大家看一下这个程序有什么问题吗?为什么会被认为是木马程序,大家在电脑上运行一下,是不是我电脑有问题
[ 本帖最后由 hanxiaokun 于 2011-9-9 16:57 编辑 ]