亚洲喷奶水中文字幕电影,日本aⅴ高清一区二区三区,欧美亚洲日本国产,欧美日韩亚洲中文字幕

<legend id="flx4p"><abbr id="flx4p"><thead id="flx4p"></thead></abbr></legend>

<mark id="flx4p"><thead id="flx4p"></thead></mark>

      外企C語言面試筆試題

        1、作為開發(fā)團隊的一員,你需要實現(xiàn)一些庫函數(shù)提供給其他人使用。

        假設(shè)你實現(xiàn)的一個函數(shù)原型如下:

        int DoSomeThing(char* pParam)

        {

        …

        }

        2、下面的代碼有什么問題?

        char *_strdup( const char *strSource )

        {

        static char str[MAX_STR_LEN];

        strcpy(str, strSource);

        return str;

        }

        3、實現(xiàn)一個函數(shù):取出一個全路徑文件名中的全路徑。

        /* [in] pszFullPath 全路徑文件名

        [out] pszPathName 接收全路徑的緩沖區(qū)

        [out] nCount 緩沖區(qū)大小

        */

        int ExtractFilePath(char* pszFullPath, char* pszPathName, int nCount)

        {

        …

        }

      本文已影響6827
      上一篇:C語言面試題 下一篇:Jdbc數(shù)據(jù)訪問技術(shù)面試題目

      相關(guān)文章推薦

      |||||