码迷,mamicode.com
首页 >  
搜索关键字:printf    ( 15030个结果
Boost thread 教程
#include #include #include class SpecificWork {private: int p_;public: SpecificWork(int value) : p_(value) { } void operator()() { printf("Value is %....
分类:其他好文   时间:2014-05-27 03:06:45    阅读次数:251
bash里,echo对换行符的处理
echo -e "#include \nint main()\n{\n printf(\"hello world\\\n\");\n return 0;\n}" > h.c; gcc h.c; ./a.outh.c里的内容#include int main(){ printf("h...
分类:其他好文   时间:2014-05-24 07:34:05    阅读次数:213
使用printf输出各种格式的字符串( 转载)
1. 原样输出字符串: printf("%s", str);2. 输出指定长度的字符串, 超长时不截断, 不足时右对齐: printf("%Ns", str); --N 为指定长度的10进制数值3. 输出指定长度的字符串, 超长时不截断, 不足时左对齐: printf("%-Ns", str); -...
分类:其他好文   时间:2014-05-24 01:45:06    阅读次数:336
_tprintf(), printf(),wprintf() 与控制字符 %s 和 %S(Unicoe与GB2312))
_tprintf() 是 printf() 和 wprintf() 的通用类型;如果定义了 _unicode,那么 _tprintf() 就会转换为 wprintf(),否则为 printf() 。在这 3 个函数中有两个字符串控制输出字符为 %s 和 %S 。使用它们时,有如下区别:%s当使用 p...
分类:其他好文   时间:2014-05-24 00:48:50    阅读次数:250
C程序编译过程
1.1程序被其他程序翻译成不同的格式 1.hello.c#include int main(){ printf("hello world\n"); } 2.编译过程 3.编译系统 预处理器、编译器、汇编器和链接器一起构成了编译系统 预处理阶段。预处理器(cp...
分类:其他好文   时间:2014-05-23 10:30:50    阅读次数:297
linux内核中驱动开发常见的类似多态
#include #include struct test { char name[20]; void (*func)(char *); }; void tttfunc(char *name) { printf("current is %d\n",__LINE__); printf("%s\n",name); } int main() { struct test ttt= { .n...
分类:系统相关   时间:2014-05-22 11:25:09    阅读次数:380
c语言中指针悬空
指针悬空 指针悬空在我们使用指针的时候很容易被忽视,主要的表现是:指针所指向的内存 释放,指针并没有置为NULL,致使一个不可控制的指针。 #include #include int *pointer; void func() { int n=8; pointer=&n; printf("pointer point data is %d\n",...
分类:编程语言   时间:2014-05-22 09:03:09    阅读次数:371
C %p
格式控制符“%p”中的p是pointer(指针)的缩写。指针的值是语言实现(编译程序)相关的,但几乎所有实现中,指针的值都是一个表示地址空间中某个存储器单元的整数。printf函数族中对于%p一般以十六进制整数方式输出指针的值,附加前缀0x。示例:int i = 1;printf("%p",&i);...
分类:其他好文   时间:2014-05-19 19:28:19    阅读次数:219
PHP语言基础简单整理
1.开始结束标记2.定义变量:$变量名例:$str="锦清笋";不需要指明数据类型3.输出语句:(1)echo"helloworld!";---echo命令(2)print();输出语句,是函数,有返回值。输出成功返回1,失败返回0。(3)printf();格式化输出字符串。例:printf("%d...
分类:Web程序   时间:2014-05-19 13:14:48    阅读次数:337
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!