linux编程精髓 源代码

源代码在线查看: ch13-strings.c

软件大小: 39 K
上传用户: afaslgo
关键词: linux 编程 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* ch13-strings.c --- demonstrate strcmp() vs. strcoll() */								#include 				#include 				#include 								int main(void)				{					setlocale(LC_ALL, "");									printf("Result of strcmp(\"\\\"\", \"/\") is %d\n", strcmp("\"", "/"));					printf("Result of strcoll(\"\\\"\", \"/\") is %d\n", strcoll("\"", "/"));					exit(0);				}							

相关资源