码迷,mamicode.com
首页 >  
搜索关键字:ctype    ( 298个结果
Centos 7中文语言包的安装及中文支持
1、修改配置文件 etc /locale.conf LANG="zh_CN.UTF-8" 2、查看更改后的系统语言变量 [root@5c46832b5c01 ~]# locale locale: Cannot set LC_CTYPE to default locale: No such file ...
分类:编程语言   时间:2021-01-28 12:23:02    阅读次数:0
postgresql认证和常见命令
sudo su - postgres -bash-4.2$ pwd /var/lib/pgsql 查看并创建新的数据库mytestdb -bash-4.2$ psql -l List of databases Name | Owner | Encoding | Collate | Ctype | A ...
分类:数据库   时间:2020-09-17 16:42:08    阅读次数:35
boa 读取txt文件中温湿度以及时间值
viewdata.c #include<stdio.h> #include<stdlib.h> #include<ctype.h> #define DATAFILE "/var/www/cgi-bin/data.txt" int main(void) { FILE *f = fopen(DATAFI ...
分类:其他好文   时间:2020-07-03 21:27:53    阅读次数:69
coding日记二
C 库函数 - isdigit() C 标准库 - <ctype.h> 描述 C 库函数 void isdigit(int c) 检查所传的字符是否是十进制数字字符。 十进制数字是:0 1 2 3 4 5 6 7 8 9 声明 下面是 isdigit() 函数的声明。 int isdigit(int ...
分类:其他好文   时间:2020-06-16 15:11:23    阅读次数:50
网络编程
服务器端: #include <stdio.h> #include <unistd.h> #include <sys/socket.h> #include <stdlib.h> #include <ctype.h> #include <arpa/inet.h> #include <sys/types ...
分类:其他好文   时间:2020-06-03 21:59:36    阅读次数:94
docker配置中文字符集
[root@localhost ~]# docker run -it -d centos:7 [root@650da1307bb1 /]# echo $LANG [root@650da1307bb1 /]# locale # 查看当前系统所使用的字符集 LANG= LC_CTYPE="POSIX" ...
分类:其他好文   时间:2020-05-29 20:57:00    阅读次数:247
数据结构-C语言实现-链栈
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 typedef int ElemType; 6 typedef struct item{ 7 ElemType items; ...
分类:编程语言   时间:2020-05-22 13:08:35    阅读次数:49
数据结构-C语言实现-动态顺序存储栈
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 typedef int ElemType; 6 typedef struct stack{ 7 ElemType *item ...
分类:编程语言   时间:2020-05-22 12:50:08    阅读次数:41
数据结构-动态顺序表-C语言实现
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <stdbool.h> 5 #define MAXSIZE 7 6 typedef int ElemType; 7 typedef struct Or ...
分类:编程语言   时间:2020-05-19 14:32:17    阅读次数:55
清除控件某个事件的所有响应函数
public void ClearEvent(System.Windows.Forms.Control control, string eventName) { if (control == null) return; try { Type cType = control.GetType(); Ev ...
分类:其他好文   时间:2020-05-18 14:05:02    阅读次数:47
298条   1 2 3 4 ... 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!