面试那边始终很吵,不知道在干什么,然后围绕着项目进行开展,项目匹配度不太够,面试官都可能不知道问什么1.自我介绍2.问项目细节3.你实习学到了什么,做这个项目的最大难点是什么4.几道C语言题目5.介绍下can协议,和uart的区别,uart协议的字段,can协议的字段6.反问下面是几道C语言的题目,大佬们可以参考一下15.编写一个函数int day_of_year(),输入一个年月日的日期,计算该日期当天在当年中是第几天。7.说出下面这段代码的作用,指出其中的问题:void fun(uint8_t score){uint8_t level = 0;if(score level = 0;if(score level = 1;if(score level = 2;if(score >= 90)level = 3;switch(level){case 0:printf("不及格");break;case 1:printf("中");break;case 2:printf("良");break;case 3:printf("优");break;}}6.请分析下面两段程序的输出情况,对结果进行说明://---------------1-----------------------volatile int BufferL;int TestSqr(int temp_v){return (BufferL * temp_v);}//............void testc(void){BufferL = 10;BufferL = TestSqr(10);Printf("%d",BufferL);}//--------------2------------------------unsigned char foo(void){unsigned int a = 6;signed int b = -20;if(a > b){return 1;}else{return 0;}}