gcc是一个编译器,下面以例子来学习如何使用这个编译器。
/*File:hello.c*/
#include
int
main(int argc, char **argv)
{
printf("Hello world.\n");
return 0;
}编辑好hello.c文件后,用gcc编译器编译它:gcc hello.c
执行完该命令后,生成可执行文件a.out,执行该文件,即可在终端...
分类:
其他好文 时间:
2014-06-19 10:14:52
阅读次数:
368
结构体结构体是一种自定义的数据类型struct 结构体名{ 类型说明符 成员名; … 类型说明符 成员名;};#import int main(int argc, const char * argv[]){ struct teacher{ char name[30]; ...
分类:
移动开发 时间:
2014-06-18 19:42:08
阅读次数:
413
三、组播模型muticast.c 1 #include 2 3 #define PORT 8088 4 5 #define MULTIIP "225.0.0.1" 6 7 int main(int argc,char **argv) 8 { 9 if(argc!=2)10 {...
分类:
其他好文 时间:
2014-06-18 16:23:20
阅读次数:
234
#import
int main(int argc, const char * argv[])
{
// int a[2][3]={
// {1,2,3},
// {4,5,6}
// };
// int a[2][3]={1,2,3,4,5,6};
// //打印单个元素
// printf("%d",a[1][1]);
// ...
分类:
编程语言 时间:
2014-06-16 23:05:14
阅读次数:
395
int b = 0;
int c = 0;
int main(int argc, const char *argv[])
{
printf("%d %d %d %d %d",b,b++,b,++b,b);
printf("%d %d %d %d %d",c,++c,c,c++,c);
return 0;
}
结果为 2 1 1 1 0 2 2 1 0 0
这个可以理解,因为p...
分类:
其他好文 时间:
2014-06-16 18:44:35
阅读次数:
170
#include #include int main(int argc, char
*argv[]){ printf("%d\n", errno); return 0;}
分类:
其他好文 时间:
2014-06-16 07:26:44
阅读次数:
158
#include #include using namespace std;int
main(int argc, char *argv[]){ deque A, B; deque ::iterator it; A.push_front(1);
B.push_back(1); ...
分类:
其他好文 时间:
2014-06-16 07:17:15
阅读次数:
199
#import
int main(int argc, const char * argv[])
{
#pragma mark----------数组
//数组是容器,相同数据类型
//构造类型
// int a[3]={5,2,0};
//类型
// int[3];
//变量名
// a;
//初值
// {5,2,0}...
分类:
编程语言 时间:
2014-06-15 10:34:06
阅读次数:
300
// VideoWriter.cpp : 定义控制台应用程序的入口点。
//
//#include "stdafx.h"
#include "cv.h"
#include "highgui.h"
#include "iostream"
using namespace std;
int main(int argc, char* argv[])
{
double fps =...
分类:
其他好文 时间:
2014-06-15 09:45:46
阅读次数:
235
#define NDEBUG#include #include int main(int
argc, char *argv[]){ assert(0); printf("%s\n", argv[argc - 1]);//路径到.exe
printf("%s\n", __FILE__...
分类:
其他好文 时间:
2014-06-12 09:00:40
阅读次数:
237