This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS 5.5进行Simulator仿真

long temp;

temp = Test_Func(100);
printf("%ld",temp);

long Test_Func(long L_Input)
{
return (long)(0x1234567);
}

仿真5535,Test_Func的输入为100,则打印100,不符合预期,请问这是为什么?