strcmp.c
来自「C_C++程序员实用大全(精华版)源代码 代码详实 一步一步深入 适合各阶段」· C语言 代码 · 共 15 行
C
15 行
#include <stdio.h>
#include <string.h>
void main(void)
{
printf("Comparing Abc with Abc %d\n", strcmp("Abc", "Abc"));
printf("Comparing abc with Abc %d\n", strcmp("abc", "Abc"));
printf("Comparing abcd with abc %d\n", strcmp("abcd", "abc"));
printf("Comparing Abc with Abcd %d\n", strcmp("Abc", "Abcd"));
printf("Comparing abcd with abce %d\n", strcmp("abcd", "abce"));
printf("Comparing Abce with Abcd %d\n", strcmp("Abce", "Abcd"));
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?