幽默草丛

文章
6
资源
1
加入时间
2年10月17天

Linux内核module_param的使用

1.定义模块参数的方法:module_param(name, type, perm);其中,name:表示参数的名字;     type:表示参数的类型;     perm:表示参数的访问权限; 2. 数组类型模块参数的定义:用逗号间隔的列表提供的值;声明一个数组参数:module_param_array(name, type, num, perm);其中,

(转)迅雷C++试题及解答

1.下列程序的输出结果为:(B)#include<iostream.h>void main(){ char* a[ ] = { "hello", "the", "world"}; char** pa = a; pa++; cout<<”*pa<<endl;}A