C++ 如何比较两个char*是否相等

The lstrcmpfunction compares two character strings. The comparison is case sensitive.

To perform a comparison that is not case sensitive, use thelstrcmpifunction.

 

Syntax

int lstrcmp(      

    LPCTSTR lpString1,     LPCTSTR lpString2 );

Parameters

lpString1
[in] Pointer to the first null-terminated string to be compared.
lpString2
[in] Pointer to the second null-terminated string to be compared.

Return Value

If the string pointed to by lpString1 is less than the string pointed to by lpString2, the return value is negative. If the string pointed to by lpString1 is greater than the string pointed to by lpString2, the return value is positive. If the strings are equal, the return value is zero.

原文链接: https://www.cnblogs.com/tompandas/archive/2011/12/10/2283421.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    C++ 如何比较两个char*是否相等

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/38226

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 下午2:52
下一篇 2023年2月8日 下午2:53

相关推荐