int main(int argc, char** argv) { int nspace = 0; int c; while((c=getchar())!=EOF){ if(c!=' '){ nspace = 0; putc...
分类:
其他好文 时间:
2014-12-17 22:28:05
阅读次数:
231
int main(int argc, char** argv) { int nspace = 0; int c; while((c=getchar())!=EOF){ if(c=='\t') printf("\\t"); if(c=...
分类:
其他好文 时间:
2014-12-17 22:26:05
阅读次数:
192
??
1
新建项目
main.cpp
#include
#include
#include
#include
int
main(int
argc,
char**
argv)
{
QCoreApplication
app(argc,
arg...
分类:
其他好文 时间:
2014-12-17 20:55:12
阅读次数:
1528
vfork and fork
两个函数都是用于创建子进程。
区别: 1. vfork 在子进程调用exec之前,它在父进程的空间中进行。
2. vfork 保证子进程先运行,在调用exec之后父进程才开始运行。
#include
#include
int main(int argc, char *argv[])
{
int pid,varble =...
分类:
其他好文 时间:
2014-12-17 16:32:19
阅读次数:
134
//
// main.m
// 1211块练习
//
// Created by jerehedu on 14/12/11.
// Copyright (c) 2014年 jereh. All rights reserved.
//
#import
int a=10;
int b=12;
int main(int argc, const ...
分类:
其他好文 时间:
2014-12-17 00:21:51
阅读次数:
146
在使用cin操作进行数据输入的过程中,经常会出现定义的数据类型与键盘输入的数据类型不匹配的情况,那么如何来解决这一问题呢?这里举一个简单的例子,#includeusing namespace std;int main(int argc,char **argv){long x;//这里定义一个long...
分类:
其他好文 时间:
2014-12-16 23:53:24
阅读次数:
1402
#include
#include
using namespace std;
void print(char*,int);
void InsertIntoVector(char*,int);
void PrintVector();
void Insertion(char c,int start, int end);
vectorVecChar;
int main(int argc, ch...
分类:
其他好文 时间:
2014-12-16 17:04:07
阅读次数:
206
一、block block和指向函数的指针比较相似。 1.定义block变量 #import?<Foundation/Foundation.h>
?
int?main(int?argc,?const?char?*?argv[])
{
????//定义block变量,没有返回值类型,也没有形式参...
分类:
其他好文 时间:
2014-12-16 11:59:06
阅读次数:
192
(1)开始使用日志设施
使用日志设施,总是要包含头文件:
#include "ace/Log_Msg.h"
ACE日志的Hello World
[cpp] view
plaincopyprint?
#include "ace/Log_Msg.h"
int main(int argc, char *argv[])...
分类:
其他好文 时间:
2014-12-16 11:48:08
阅读次数:
180
#include #include #include #define MAX_CLUSTERS (8)using namespace std;int main( int argc, char **argv){IplImage *imgA = cvLoadImage( "1.jpg", CV_LOAD...
分类:
其他好文 时间:
2014-12-15 16:47:47
阅读次数:
379