#面试
潘多拉的面
这个作者很懒,什么都没留下…
展开
-
刷题***
1、现在需要采购一些苹果,每名同学都可以分到固定数量的苹果,并且已经知道了同学的数量,请问需要采购多少个苹果?#include <iostream>using namespace std;class Number{ private: int apple_num; int student_num; public: void get_number(int apple,int student) { apple_num = apple; student_nu原创 2021-09-11 01:42:43 · 604 阅读 · 0 评论 -
面经。。。
嵌入式软件实习生面试总结_WuYujun's blog-CSDN博客原创 2021-09-10 09:32:37 · 92 阅读 · 0 评论 -
#面试题#
1,static 全局变量与普通全局变量有什么区别 2,以下函数输出结果是什么 int main() { char *s[] = {"one", "two", "three"}, *p; p = s[1]; printf("%c, %s\n",*(p+1), s[0]); return 0; } 考察数组3,该函数执行后打印结果 printf("%s","123456789"+3) 4,用预处理指令#define 声明一个常数,用以表明一年中有多少原创 2021-08-29 20:10:30 · 275 阅读 · 0 评论