笔试1

原文地址:笔试1 作者:lihongliang070

i节点和超级块:http://tech.e800.com.cn/articles/2009/520/1242789805655_1.html 

一、基础题:  
    1.请列举出你用过的LINUX发行版及其中的GCC版本、GLIB版本  
    2.ISO七层参考模型中的PPP协议、HTTP协议处于哪一层?  
    3.说出TCP和UDP的相同和不同之处  
    4.IP数据包头部是多长?146.0.0.0属于哪一类IP地址?  
    5.请写出linux嵌入式系统开发过程  
    6.在以下列举的GCC中的参数,请一一写出代表的意思:  
         -c  
            -o  
            -share  
            -static  
          7.写出以下参数的含义:  
      _attribute_   (packet)  
                volatile  
   
                #define   ANYONE((DIR)<                                     (FILE)<    
  二、程序阅读题(输出程序结果):      
    3.char   *p;  
              p=malloc(20);  
              char   q*;  
              q=strcpy(p,"Please   answer   the   question   carefully");  
              q+=7;  
              printf("%s",q);  
              printf("%s",p);  
          4.#define   X   1  
              #define   Y   X+1  
              int   p;  
              p=x+y/2;  
              printf("%d",p);  
          5.struct   n{  
                int   p;  
                char   name;  
                }a;  
                void   structp(struct   n   b)  
           

你可能感兴趣的:(linux)