鍍金池/ 問答/C  網(wǎng)絡(luò)安全/ 如何看 c語(yǔ)言中函數(shù)(strcat_s)說(shuō)明

如何看 c語(yǔ)言中函數(shù)(strcat_s)說(shuō)明

我在參考鏈接中看到(strcat_s 的 函數(shù) 參考):

clipboard.png

clipboard.png

不知道該如何去查看 c 語(yǔ)言這么一個(gè)函數(shù)的說(shuō)明??

回答
編輯回答
遲月

OP的意思是覺得鏈接的資料不足夠理解這個(gè)函數(shù)嗎?
用google搜下, 以下是可能有用的鏈接:
https://docs.microsoft.com/en...

https://stackoverflow.com/que...

https://cboard.cprogramming.c...

http://en.cppreference.com/w/...

Update:
這是一個(gè)X-Y problem. 你需要搞懂的是這些keyword的意思, 而不是單純的"如何看 c語(yǔ)言中函數(shù)(strcat_s)說(shuō)明". 利用好搜索引擎, 比如google, 知道學(xué)習(xí)c語(yǔ)言一些常見的參考站點(diǎn), 比如man page, cppreference的c版, Stack Overflow.

舉個(gè)例子, http://en.cppreference.com/w/... 這里就有對(duì)errno_t的說(shuō)明:

a typedef for the type int, used to self-document functions that return errno values
2017年4月22日 00:41