⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch13-strings.c

📁 linux编程精髓 源代码
💻 C
字号:
/* ch13-strings.c --- demonstrate strcmp() vs. strcoll() */#include <stdio.h>#include <locale.h>#include <string.h>int main(void){	setlocale(LC_ALL, "");	printf("Result of strcmp(\"\\\"\", \"/\") is %d\n", strcmp("\"", "/"));	printf("Result of strcoll(\"\\\"\", \"/\") is %d\n", strcoll("\"", "/"));	exit(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -