2012年2月12日

摘要: #include <stdio.h>#include <iostream>#include <windows.h>#include <windowsx.h>//gl文件必须包含在windows后边,do not know why#include <GL/gl.h>#include <GL/glu.h>#include <GL/glut.h>using namespace std;int nWidth = 900;int nHeight = 600;float zoom =1.0;float ViewAngle= 阅读全文

posted @ 2012-02-12 20:45 无忧consume 阅读(179) 评论(0) 推荐(0) 编辑

摘要: #include <windows.h>#include <stdio.h>#include <conio.h>////下列X-Y坐标平面的值取决于控制台的尺寸,需要根据实际情况进行调整////起始X坐标#define X_START 10//结束X坐标#define X_END 650//每个值的X坐标增量,相当于512uS#define X_INC 10//Y坐标#define Y 250int main(){ HWND hwnd; HDC hdc; //获取console的设备上下文句柄 hwnd = GetConsoleWindow(); hdc = 阅读全文

posted @ 2012-02-12 19:40 无忧consume 阅读(261) 评论(0) 推荐(0) 编辑

摘要: 首先要明确的是,所有的初始化都是运行时完成的。 0) int g; 1) int global = rand(); 2) const int ci = 5; 3) struct test 4) { 5) test() : i_(10) {} 6) int i_; 7) }; 8) test global_object; 9) void fun() 10) { 11) int local; 12) int local2 = 100; 13) } 14) int main() 15) { 16) fun(); 17) static int si; 18) re... 阅读全文

posted @ 2012-02-12 18:45 无忧consume 阅读(394) 评论(0) 推荐(0) 编辑

摘要: 1. GCC 大名鼎鼎的GNU的C/C++/Obj-C编译器 其基本结构就是一个front end和back end, /usr/bin/gcc 就是个front end, 其kernel东西都放在 /usr/lib/gcc-lib下面, cpp是C预处理器, cc1*的1M多的就是编译器的核心模块了 cc1 C compiler cc1plus C++ compiler cc1obj Object-C compiler 但gcc并没有集成Fortran的compiler, 一般要用f2c转成C后才用gcc编译 gcc的不断发展完善使许多commercial compiler... 阅读全文

posted @ 2012-02-12 17:31 无忧consume 阅读(1564) 评论(0) 推荐(0) 编辑

摘要: 一、运行 gcc/egcs linux 中最重要的软件开发工具是 GCC。GCC 是 GNU 的 C 和 C++ 编译器。实际上,GCC能够编译三种语言:C、C++和ObjectC(C语言的一种面向对象扩展)。利用 gcc 命令可同时编译并连接 C 和 C++ 源程序。#DEMO#: hello.c 如果你有两个或少数几个C源文件,也可以方便地利用GCC编译、连接并生成可执行文件。例如,假设你有两个源文件 main.c 和 factorial.c 两个源文件,现在要编译生成一个计算阶乘的程序。清单 factorial.c-----------------------#include #in.. 阅读全文

posted @ 2012-02-12 17:09 无忧consume 阅读(267) 评论(0) 推荐(1) 编辑

摘要: nm (Unix) Thenmcommand ships with a number of later versions ofUnixand similaroperating systems. nm is used to examinebinary files(includinglibraries, compiledobject modules, shared-object files, and standaloneexecutables) and to display the contents of those files, ormeta informationstored in them. 阅读全文

posted @ 2012-02-12 17:05 无忧consume 阅读(279) 评论(0) 推荐(0) 编辑


Copyright © 2024 无忧consume
Powered by .NET 8.0 on Kubernetes