码迷,mamicode.com
首页 >  
搜索关键字:argc    ( 2629个结果
Linux UDP通信例子
UDP C/S编程的步骤如下图所示////server.c#include #include #include#include #include #include #include #include int main(int argc, char **argv){ if (argc != 2)...
分类:系统相关   时间:2015-01-04 11:53:21    阅读次数:271
linux 编译win32程序
apt-get install mingw32int main(int argc, char *argv){printf("Windows Compiler Test\n");return 0;}i586-mingw32msvc-gcc -o win32.exe main.c
分类:Windows程序   时间:2014-12-30 11:34:59    阅读次数:177
C++多态
有一个注意要点,必须用指针,不能用A a = B()的形式。#include "stdafx.h"#include "Base.h"#include "Class2.h"int _tmain(int argc, _TCHAR* argv[]){ Base* base = new Class2(...
分类:编程语言   时间:2014-12-29 13:38:14    阅读次数:143
hdu_1001
1 #include 2 3 int main(int argc, char const *argv[]) 4 { 5 long long n; 6 while(~scanf("%d",&n)){ 7 printf("%d\n\n", (1+n)*n/2); 8...
分类:其他好文   时间:2014-12-28 20:49:33    阅读次数:124
hdu_1000
1 #include 2 3 int main(int argc, char const *argv[]) 4 { 5 int a, b; 6 while(~scanf("%d%d",&a, &b)){ 7 printf("%d\n", a + b); 8 } 9 return 0;10 }
分类:其他好文   时间:2014-12-28 20:41:25    阅读次数:106
从调用printf()到能看到输出的字符
0 引入看如下最简单的C程序:int main(int argc, char** argv) {     printf("ABC");     return 0; }本文就是力图描述这个程序的执行过程,具体来说,就是从调用printf(),到“ABC”三个字符显示到显示器上,到底是一个什么样的过程。1 第一阶段: printf()最终调用write()写入终端使用strace跟踪执行上面的...
分类:其他好文   时间:2014-12-27 20:28:37    阅读次数:288
struct结构会增加程序的开销
struct结构一方面能够加强对变量的管理,增加程序的可读性,但是另一方面,结构体也会加大程序的开销。 看下面一段代码: struct TEST_S { int a; int b; float c; }; int _tmain(int argc, _TCHAR* argv[]) { TEST_S ts; int a; int b; int c; ts.a = 100; ts....
分类:其他好文   时间:2014-12-26 20:24:18    阅读次数:307
iOS中block的使用详解
第一、block的使用 1、截获自动变量的值 typedef void(^TEST)(void); int main(int argc, const char * argv[]) {     @autoreleasepool {         TEST test;          NSString *sample=@"hello";         test=^{       ...
分类:移动开发   时间:2014-12-26 16:48:32    阅读次数:198
Android 4.4KitKat AudioFlinger 流程分析
AudioFlinger(AF)是一个服务,具体的代码在av\media\mediaserver\Main_mediaserver.cpp中: int main(int argc, char** argv) { signal(SIGPIPE, SIG_IGN); char value[PROPERT...
分类:移动开发   时间:2014-12-26 16:38:10    阅读次数:294
字符串的判断
#import int main(int argc, const char * argv[]){ @autoreleasepool { //1.判断字符串是否为空 NSString * str = @""; if (str == ni...
分类:其他好文   时间:2014-12-25 23:36:42    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!