码迷,mamicode.com
首页 >  
搜索关键字:char nchar varchar nvarchar text ntext    ( 92775个结果
sscanf的应用
1.提取字符串2.提取指定长度的字符串3.提取指定字符为止的字符串4.取仅包含指定字符集的字符串5.取到指定字符集为止的字符串#include int main(){ char str[512]={0}; sscanf("123456","%s",str); printf("str...
分类:其他好文   时间:2014-05-12 17:15:19    阅读次数:322
用fseek和ftell获取文件的大小
#include #include #include int main(int argc,char *argv[]){ int n=0; FILE *fp; if((fp=fopen(argv[1],"r"))==NULL) { perror("fopen");...
分类:其他好文   时间:2014-05-02 18:05:54    阅读次数:308
ecl函数的用法
相关函数fork, execle, execlp, execv, execve, execvpWindows下头文件#include Linux下头文件#include 函数定义int execl(const char *path, const char *arg, ...);函数说明execl()...
分类:其他好文   时间:2014-05-02 17:52:52    阅读次数:674
拷贝构造函数[c++]
拷贝构造函数何时会被调用?1. 对象以值传递的方式传入函数参数2.对象以值传递的方式从函数返回3.对象需要通过另外一个对象进行初始化下面我们来看代码://#include //using namespace std;//template //T:队列的类型,char,int,double,包括自己....
分类:编程语言   时间:2014-05-02 17:33:17    阅读次数:401
IS语音
Speak,简称IS。是目前最火的国内团队语音聊天软件。很多网络都把自己的游戏放在IS官方网页宣传,高峰期,在线人数估计在20万。 现如今IS凭借着自己打入市场早和其软件功能强大、占用资源少等优势深受广大网游玩家的喜爱。与盛大的易聊、新浪的UT等其他一些在线语音聊天软件相比,IS占据着绝大多数的市场...
分类:其他好文   时间:2014-05-02 16:41:24    阅读次数:348
printf/scanf格式
(1)打印字符char c;printf("%c",c);(2)打印整形int i;printf("%d",i); //有符号十进制数printf("%u",i); //无符号十进制数(3)打印浮点数float f;printf("%f",f);(4)打印指针int *p;pri...
分类:其他好文   时间:2014-05-02 16:13:07    阅读次数:378
用fread和fwrite实现文件复制操作
#include #include #include int main(int argc,char **argv){ FILE *fp_src,*fp_des; char buf[128]; int num; if(argc!=3) { printf("t...
分类:其他好文   时间:2014-05-02 16:06:36    阅读次数:562
获取CPU频率
#include #include float get_cpu_clock_speed(){ FILE *fp; char buffer[1024]; size_t bytes_read; char *match; float clock_speed; fp=fo...
分类:其他好文   时间:2014-05-02 14:20:39    阅读次数:392
java开始到熟悉66-69
本次内容:DateFormat类1、DateFormat类 1 package array; 2 /** 3 * 时间和字符串之间的转化 4 */ 5 import java.text.DateFormat; 6 import java.text.ParseException; 7 impor...
分类:编程语言   时间:2014-05-02 14:16:19    阅读次数:518
C语言中字符串如何转换为二进制、八进制、十进制、十六进制
在C语言某个程序当中需要把文本16进制转换成对应的16进制数,比如字符串"0x1a"转换成10进制的26,可以用以下函数来实现相关函数: atof, atoi, atol, strtod, strtoul表头文件: #include 定义函数: long int strtol(const char ...
分类:编程语言   时间:2014-05-02 09:58:29    阅读次数:290
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!