posts - 189,comments - 115,trackbacks - 0

Linux 平台上的C语言调试工具!

Debugging Tools for C on Linux Platform
http://www.linuxgazette.com/node/view/8755

Submitted by Nikhil Bhargava on Tue, 02/17/2004 - 14:37. Articles | General Interest
This article talks about debugging tools for applications in C on Linux platforms. Most of the tools are freely available on all major platforms with very wide user support. The tools help in static analysis of code as well as assist in dynamic evaluation of code.

Please note that tools listed here are suggestions of the author. This list is not a standard one. Changes have to be done in it depending upon the nature, scope and details of the application to be developed.
Debugging Tools


1. Dmalloc http://dmalloc.com/

The debug memory allocation or Dmalloc library is a freeware debugging tool which has been specially designed as a drop in replacement for the system's malloc, realloc, calloc, free and other memory management routines while providing powerful debugging facilities configurable at runtime. It makes changes during compile time and donot add runtime changes in binary. These facilities include such things as memory-leak tracking, fence-post write detection, file/line number reporting, and general logging of statistics. The library is reasonably portable having been run successfully on at least the following operating systems: AIX, BSD/OS, DG/UX, Free/Net/OpenBSD, GNU/Hurd, HPUX, Irix, Linux, MS-DOG, NeXT, OSF, SCO, Solaris, SunOS, Ultrix, Unixware, Windoze, and even Unicos on a Cray T3E. It has full support for programs the debugging of POSIX threads.

The package includes the library, configuration scripts, debug utility application, test program, and documentation.

2. Valgrind http://valgrind.kde.org/

Valgrind is a GPL distributed system for debugging and profiling x86-Linux programs. I can also be helpful for programs for platforms other than x86 since behavior of x86 binary is similar to other binaries. The accompanying tools with Valgrind automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making programs more stable. It supports a through detailed profiling to help speed up the programs.

The Valgrind distribution includes four tools: two memory error detectors, a thread error detector, and a cache profiler.

3. Electricfence http://rpmfind.net/linux/RPM/conecti...-2cl.i386.html

Electric Fence is a freeware library that can be used for C programming and debugging. It can be linked at compile time and it will warn about possible problems such as freeing memory that doesn't exist, etc. It is basically a memory profiling tool. However currently it is available only on HP-Unix platform (I am not very sure though).

4. GDB http://sources.redhat.com/gdb

This is the Gnome Debugger which comes as a freeware support package with freeware Linux distribution like Red Hat, Slacware, and Debian etc. It has full support of many languages like C, C++, and Perl etc. It helps to debug the binaries of these languages in modes like single step, multiple step or complete run. It also has provisions of setting break points and trace value.

It is helpful for stub testing, functional flow checking and bound checking. Further this is readily available with all flavours of Linux andUnix platforms and is amply supported in user community.

5. Insight http://sources.redhat.com/insight

Insight is a graphical user interface to GDB, the GNU Debugger written in Tcl/Tk by at Red Hat, Inc. and Cygnus Solutions Insight provides all features provided by GDB along with Graphical debugging interface replacing traditional command based interface.

6. Memprof http://www.gnome.org/projects/memprof

MemProf is a free ware memory Profiling and memory leak detection tool which comes as an addendum to common Linux distributions. It can generate a profile how much memory was allocated by each function in the program. It can scan memory and find blocks that have been allocated but are no longer referenced anywhere (dead code).

MemProf works by pre-loading a library to override the C library's memory allocation functions and does not require recompiling the program. One advantage MemProf has over some other similar tools that are available is that it has a nice GUI front-end and is relatively easy to use.


I am Nikhil Bhargava from Delhi, India. I am a Computer Engineer currently working in C-DOT, India for past one year. Comments and Suggestions are always welcome.


【硬件编程咨询】C语言资料大全

◆经典C源程序100例:http://post.baidu.com/f?kz=8618367

◆时钟的驻留程序:http://post.baidu.com/f?kz=10822377

◆数据结构暨若干经典问题和算法:http://post.baidu.com/f?kz=10922856

◆LIUXUY 磁盘系统源程序:http://post.baidu.com/f?kz=12973347

◆RLE压缩:http://post.baidu.com/f?kz=12592570

◆快速排序:http://post.baidu.com/f?kz=12262349

◆全排列的递归算法:http://post.baidu.com/f?kz=12248706

◆KMP字符串搜索算法:http://post.baidu.com/f?kz=12143581

◆C高效编程四招:http://post.baidu.com/f?kz=13192245

◆无栈非递归二叉树遍历:http://post.baidu.com/f?kz=12394188

◆跟我学NETBSD内核源码:http://post.baidu.com/f?kz=12201581

◆Linux源码:http://post.baidu.com/f?kz=12692827

◆C语言中不定参数的实现http://post.baidu.com/f?kz=19232306

◆一个有关 FreeBSD 的网站:http://post.baidu.com/f?kz=14828500

◆c51系列仿真器:http://post.baidu.com/f?kz=14332652

◆brainf*ck 语言的解释器http://post.baidu.com/f?kz=15998145

◆怎样用c写游戏:http://post.baidu.com/f?kz=5417859

◆本吧游戏编程相关:http://post.baidu.com/f?kz=11867577

◆简单的病毒程序:http://post.baidu.com/f?kz=5558054

◆迷宫游戏:http://post.baidu.com/f?kz=5781985

◆QQ好友管理程序:http://post.baidu.com/f?kz=5071518

◆销售监控程序:http://post.baidu.com/f?kz=6352894

◆简单的仓储管理系统:http://post.baidu.com/f?kz=7316990

◆简单的电话储存系统:http://post.baidu.com/f?kz=7257980

◆模拟电子时钟的程序:http://post.baidu.com/f?kz=7519467

◆计算任意一天是星期几:http://post.baidu.com/f?kz=8329211

◆打印任意月份日历:http://post.baidu.com/f?kz=8880741

◆分类记事本:http://post.baidu.com/f?kz=8154266

◆TC2编程图片处理利器:http://post.baidu.com/f?kz=11163580

◆printf写的游戏:http://post.baidu.com/f?kz=11162185

◆人机对战扑克游戏:http://post.baidu.com/f?kz=11366672

◆俄罗斯方块:http://post.baidu.com/f?kz=12145169

◆俄罗斯方块:http://post.baidu.com/f?kz=16028030

◆文本加密例程:http://post.baidu.com/f?kz=11968123

◆给一行文字设置密码加解密:http://post.baidu.com/f?kz=20205053

◆破解BIOS密码:http://post.baidu.com/f?kz=12230804

◆贪吃蛇1代:http://post.baidu.com/f?kz=30512251

◆完整的贪吃蛇游戏:http://post.baidu.com/f?kz=31119717

◆贪吃蛇:http://post.baidu.com/f?kz=19624003

◆学生成绩系统(C++版) http://post.baidu.com/f?kz=6640660

◆图书馆管理系统http://post.baidu.com/f?kz=22241061

◆图书管理系统http://post.baidu.com/f?kz=17682927

◆万年历http://post.baidu.com/f?kz=17197492

◆判断闰年http://post.baidu.com/f?kz=16137615

◆万年历http://post.baidu.com/f?kz=20493202

◆变化的同心圆http://post.baidu.com/f?kz=18056765

◆通讯录 http://post.baidu.com/f?kz=22775724

◆C语言通讯录(数组):http://post.baidu.com/f?kz=37202204

◆飞机票订购系统http://post.baidu.com/f?kz=21296518

◆又一个计算器:http://post.baidu.com/f?kz=24283347

◆一个级数:http://post.baidu.com/f?kz=16708781

◆四则运算计算器http://post.baidu.com/f?kz=22279483

◆二叉树排序树上实现学生信息管理http://post.baidu.com/f?kz=21436251

◆判断回文字符串:http://post.baidu.com/f?kz=21815959

◆教小学生算术:http://post.baidu.com/f?kz=22322599

◆六籽弹小游戏http://post.baidu.com/f?kz=17637684

◆黑白棋:http://post.baidu.com/f?kz=19624178

◆十个学生的成绩统计:http://post.baidu.com/f?kz=14787745

◆某一天是这一年的第几天:http://post.baidu.com/f?kz=13772082

◆局域网聊天的程序:http://post.baidu.com/f?kz=14413292

◆C编写简单的窗口界面:http://post.baidu.com/f?kz=3388604

◆哈希表实例:http://post.baidu.com/f?kz=13350908

◆随机生成的迷宫游戏:http://post.baidu.com/f?kz=11120413

◆炸弹超人游戏c语言简版:http://post.baidu.com/f?kz=37461531

◆用栈实现的迷宫寻径演示:http://post.baidu.com/f?kz=38578844

◆计算电脑开机时间:http://post.baidu.com/f?kz=38506368

◆C++编一个成绩管理课件:http://post.baidu.com/f?kz=3889433

◆一圈人报数问题问题:http://post.baidu.com/f?kz=3833415

◆又一报数出圈http://post.baidu.com/f?kz=17789700

◆约瑟夫环循环链表 http://post.baidu.com/f?kz=13750140

◆用c编一个分数计算器程序 :http://post.baidu.com/f?kz=3831746

◆命令行计算器:http://post.baidu.com/f?kz=8465088

◆乘法表:http://post.baidu.com/f?kz=11267637

◆学生管理系统:http://post.baidu.com/f?kz=5806073

◆学生成绩管理系统:http://post.baidu.com/f?kz=37076140

◆学生成绩管理系统:http://post.baidu.com/f?kz=5972675

◆学生成绩管理程序(链表):http://post.baidu.com/f?kz=6598859

◆统计学生成绩(8pm版)http://post.baidu.com/f?kz=14787745

◆打印九九表:http://post.baidu.com/f?kz=6059385

◆水仙花数问题:http://post.baidu.com/f?kz=11510377

◆打印2004年日历:http://post.baidu.com/f?kz=6469868

◆八皇后问题:http://post.baidu.com/f?kz=4456709

◆八皇后问题(do熊版):http://post.baidu.com/f?kz=8513222

◆汉诺塔问题:http://post.baidu.com/f?kz=7402377

◆统计不同字符个数:http://post.baidu.com/f?kz=7394163

◆统计单词数行数:http://post.baidu.com/f?kz=8211273

◆查找替换字符串并统计次数:http://post.baidu.com/f?kz=7335032

◆杨辉三角:http://post.baidu.com/f?kz=9299150

◆屏幕中间输出杨辉三角http://post.baidu.com/f?kz=12054232

◆矩阵转置:http://post.baidu.com/f?kz=9882271

◆输出用*组成的三角形:http://post.baidu.com/f?kz=8465901

◆输出一个菱形:http://post.baidu.com/f?kz=11879706

◆输出菱形http://post.baidu.com/f?kz=16465168

◆手把手教你写猜数游戏:http://post.baidu.com/f?kz=11205156

◆abort函数简介:http://post.baidu.com/f?kz=8610596

◆getchar与putchar:http://post.baidu.com/f?kz=7820387

◆scanf 讨论:http://post.baidu.com/f?kz=5305522

◆C语言输入输出讨论:http://post.baidu.com/f?kz=7586045

◆时间函数clock():http://post.baidu.com/f?kz=7867779

◆在规定时段自动关机:http://post.baidu.com/f?kz=7132544

◆getch防止程序运行一闪而过:http://post.baidu.com/f?kz=7360819

◆MALLOC FREE问题:http://post.baidu.com/f?kz=4826280

◆一个连接两个字符串的函数:http://post.baidu.com/f?kz=7958354

◆同一行回显输入字符:http://post.baidu.com/f?kz=5272169

◆整点报时问题:http://post.baidu.com/f?kz=7307517

◆c语言中随机数字应用: http://post.baidu.com/f?kz=3065339

◆怎样获取文件大小:http://post.baidu.com/f?kz=4189689

◆程序得到自已的当前名称:http://post.baidu.com/f?kz=5993842

◆怎么使用清屏:http://post.baidu.com/f?kz=6087210

◆sound()函数为何没有声音:http://post.baidu.com/f?kz=30844221

◆自写trim函数:http://post.baidu.com/f?kz=14226973

◆bioskey(1)的问题:http://post.baidu.com/f?kz=14651579

http://post.baidu.com/f?kz=14536875

◆bioskey这个函数怎么用:http://post.baidu.com/f?kz=15272841

◆CHAR*转为LONG:http://post.baidu.com/f?kz=15054773

◆LONG毫秒转为CHAR*分秒的函数:http://post.baidu.com/f?kz=15140414

◆狐狸找兔子:http://post.baidu.com/f?kz=8729392

◆猴子吃桃:http://post.baidu.com/f?kz=8448705

◆猜数游戏: http://post.baidu.com/f?kz=4215306

◆二分法解方程:http://post.baidu.com/f?kz=7663955

◆同余在数值计算中的应用:http://post.baidu.com/f?kz=6924343

◆多项式相乘:http://post.baidu.com/f?kz=7441950

◆韩信点兵:http://post.baidu.com/f?kz=8203887

◆用C编写的四叶玫瑰曲线:http://post.baidu.com/f?kz=7853365

四叶玫瑰曲线的旋转动画:http://post.baidu.com/f?kz=18656216

◆求n个数的最大公约数:http://post.baidu.com/f?kz=6848849

◆寻找完数:http://post.baidu.com/f?kz=11892209

◆蛇形矩阵算法:http://post.baidu.com/f?kz=12433353

◆圆周率计算:http://post.baidu.com/f?kz=12394522

◆小球称重:http://post.baidu.com/f?kz=12648561

◆整数分解:http://post.baidu.com/f?kz=12582169

◆整数的立方=两整数的平方差:http://post.baidu.com/f?kz=15121585

◆阶乘级数:http://post.baidu.com/f?kz=14601711

◆三点坐标求三角形面积:http://post.baidu.com/f?kz=14679236

◆多项式相乘http://post.baidu.com/f?kz=17157736

◆求pi的怪异程式:http://post.baidu.com/f?kz=14832207

◆歌德巴赫猜想:http://post.baidu.com/f?kz=20011131

◆求最大公约数和最小公倍数http://post.baidu.com/f?kz=15965236

◆3个正整数的最小公倍数http://post.baidu.com/f?kz=17747110

◆求阶乘:http://post.baidu.com/f?kz=19314067

◆输出三数最大值:http://post.baidu.com/f?kz=19023855

◆10000以内的阶乘(do熊版)http://post.baidu.com/f?kz=16446002

◆算法:整数划分问题http://post.baidu.com/f?kz=12582169

◆辗转法求2个数最大公约数http://post.baidu.com/f?kz=16965299

◆算24:http://post.baidu.com/f?kz=17336190

◆100元买100只鸡:http://post.baidu.com/f?kz=14920285

◆COS X曲线http://post.baidu.com/f?kz=16633244

◆矩阵的加减乘运算演示:http://post.baidu.com/f?kz=37953154

◆狐狸找兔子:http://post.baidu.com/f?kz=8729392

◆猴子吃桃:http://post.baidu.com/f?kz=8448705

◆猜数游戏: http://post.baidu.com/f?kz=4215306

◆二分法解方程:http://post.baidu.com/f?kz=7663955

◆同余在数值计算中的应用:http://post.baidu.com/f?kz=6924343

◆多项式相乘:http://post.baidu.com/f?kz=7441950

◆韩信点兵:http://post.baidu.com/f?kz=8203887

◆用C编写的四叶玫瑰曲线:http://post.baidu.com/f?kz=7853365

四叶玫瑰曲线的旋转动画:http://post.baidu.com/f?kz=18656216

◆求n个数的最大公约数:http://post.baidu.com/f?kz=6848849

◆寻找完数:http://post.baidu.com/f?kz=11892209

◆蛇形矩阵算法:http://post.baidu.com/f?kz=12433353

◆圆周率计算:http://post.baidu.com/f?kz=12394522

◆小球称重:http://post.baidu.com/f?kz=12648561

◆整数分解:http://post.baidu.com/f?kz=12582169

◆整数的立方=两整数的平方差:http://post.baidu.com/f?kz=15121585

◆阶乘级数:http://post.baidu.com/f?kz=14601711

◆三点坐标求三角形面积:http://post.baidu.com/f?kz=14679236

◆多项式相乘http://post.baidu.com/f?kz=17157736

◆求pi的怪异程式:http://post.baidu.com/f?kz=14832207

◆歌德巴赫猜想:http://post.baidu.com/f?kz=20011131

◆求最大公约数和最小公倍数http://post.baidu.com/f?kz=15965236

◆3个正整数的最小公倍数http://post.baidu.com/f?kz=17747110

◆求阶乘:http://post.baidu.com/f?kz=19314067

◆输出三数最大值:http://post.baidu.com/f?kz=19023855

◆10000以内的阶乘(do熊版)http://post.baidu.com/f?kz=16446002

◆算法:整数划分问题http://post.baidu.com/f?kz=12582169

◆辗转法求2个数最大公约数http://post.baidu.com/f?kz=16965299

◆算24:http://post.baidu.com/f?kz=17336190

◆100元买100只鸡:http://post.baidu.com/f?kz=14920285

◆COS X曲线http://post.baidu.com/f?kz=16633244

◆矩阵的加减乘运算演示:http://post.baidu.com/f?kz=37953154

◆@ 的读音:http://post.baidu.com/f?kz=12952426

◆“&”怎么读http://post.baidu.com/f?kz=17725981

◆gcc跨平台问题:http://post.baidu.com/f?kz=5371847

◆LL型运算(64位): http://post.baidu.com/f?kz=5248192

◆正方形动画下落(不用清屏):http://post.baidu.com/f?kz=5467099

◆大数运算的免费库libgmp:http://www.swox.com/gmp/

◆大数运算10000以内阶乘:http://post.baidu.com/f?kz=2780897

◆素数搜索算法程序:http://post.baidu.com/f?kz=6221885

◆bmp文件读写: http://post.baidu.com/f?kz=5236264

◆用C显示PCX文件:http://post.baidu.com/f?kz=6059067

◆汇编语言嵌入C 程序段:http://post.baidu.com/f?kz=4038342

◆宏替换问题: http://post.baidu.com/f?kz=5327438

◆宏定义带括号的问题:http://post.baidu.com/f?kz=10001502

◆大下标数组操作:http://post.baidu.com/f?kz=4201196

◆关于数组越界:http://post.baidu.com/f?kz=13204257

◆整数数组初始化赋值:http://post.baidu.com/f?kz=8513573

◆字符数组与字符串:http://post.baidu.com/f?kz=7608560

◆字符串数组下标问题:http://post.baidu.com/f?kz=11253296

◆数组的编译和执行的效率:http://post.baidu.com/f?kz=6243463

◆C写的隐式输入密码:http://post.baidu.com/f?kz=5438409

◆又一个隐式密码输入:http://post.baidu.com/f?kz=11321460

◆C 的文本文件行操作:http://post.baidu.com/f?kz=4303211

◆链表的数据插入:http://post.baidu.com/f?kz=5851022

◆链表的合并:http://post.baidu.com/f?kz=5790984

◆双向链表的插入和删除:http://post.baidu.com/f?kz=6352819

◆谭C例题链表插入删除操作:http://post.baidu.com/f?kz=2286853

◆进制转换的几个函数:http://post.baidu.com/f?kz=5799330

◆十进制转二进制的一种方法:http://post.baidu.com/f?kz=4201639

◆鼠标事件处理:http://post.baidu.com/f?kz=5469795

◆两个鼠标函数库:http://post.baidu.com/f?kz=6952040

◆鼠标器的程序信息:http://post.baidu.com/f?kz=2728110

◆关于鼠标程序:http://post.baidu.com/f?kz=12299687

◆中断号调用:http://post.baidu.com/f?kz=5469596

◆几个中断的资料:http://post.baidu.com/f?kz=7462907

◆C语言接口与实现:http://post.baidu.com/f?kz=5979383

◆C语言的串口通信:http://post.baidu.com/f?kz=8467750

◆怎样理解递归对栈的应用:http://post.baidu.com/f?kz=9882580

◆递归求组合定值:http://post.baidu.com/f?kz=5824841

◆递归求元素和:http://post.baidu.com/f?kz=6380549

◆全排列:http://post.baidu.com/f?kz=7336872

◆擂台赛--求1000000素数:http://post.baidu.com/f?kz=6221885

◆擂台赛--大数运算:http://post.baidu.com/f?kz=6279195

◆字符串编辑时光标的控制:http://post.baidu.com/f?kz=6230397

◆在指定位置输出字符:http://post.baidu.com/f?kz=12059970

◆光盘启动菜单的问题:http://post.baidu.com/f?kz=6093143

◆NOIP复赛文件名大小写问题:http://post.baidu.com/f?kz=6270393

◆程序的带参运行 http://post.baidu.com/f?kz=3545215

◆关于main 的参数:http://post.baidu.com/f?kz=7535662

◆main 函数返回值问题:http://post.baidu.com/f?kz=11161360

◆一个主函数参数问题:http://post.baidu.com/f?kz=9495695

◆函数参数中引用别名问题:http://post.baidu.com/f?kz=9299395

◆函数调用返回多个值:http://post.baidu.com/f?kz=5536004

◆函数中参数调用的问题:http://post.baidu.com/f?kz=6035295

◆函数参数按址传送的问题:http://post.baidu.com/f?kz=5558840

◆assiss谈宏定义及条件编译:http://post.baidu.com/f?kz=6193259

◆输出格式*号控制符:http://post.baidu.com/f?kz=7149608

◆输出格式的空格问题:http://post.baidu.com/f?kz=5147346

◆输出格式中#代表什么:http://post.baidu.com/f?kz=11993035

◆程序代码的上传与下载:http://post.baidu.com/f?kz=6566895

◆++i和i++的问题:http://post.baidu.com/f?kz=6712609

◆ASCII字符输出问题:http://post.baidu.com/f?kz=6771317

◆Fdisk的源程序:http://post.baidu.com/f?kz=6790551

◆正则替换:http://post.baidu.com/f?kz=6775253

◆自我保护----“程序自杀”:http://post.baidu.com/f?kz=6682850

◆编辑框问题:http://post.baidu.com/f?kz=6953560

◆西文环境下显示汉字:http://post.baidu.com/f?kz=2144548

◆读取汉字库中的汉字:http://post.baidu.com/f?kz=7359496

◆三种排序:http://post.baidu.com/f?kz=6769579

◆far 远程指针简述:http://post.baidu.com/f?kz=7742757

◆指针悬空的危险错误:http://post.baidu.com/f?kz=7130531

◆指针作参数的问题:http://post.baidu.com/f?kz=6922977

◆判断字符串是否回文: http://post.baidu.com/f?kz=7624806

◆编程中遇到的小困扰:http://post.baidu.com/f?kz=8002835

◆UNIX下面怎么编译C程序:http://post.baidu.com/f?kz=8046512

◆C如何调用其他程序:http://post.baidu.com/f?kz=8355281

◆C游戏中控制键盘:http://post.baidu.com/f?kz=4902906

◆C语言控制应用:http://post.baidu.com/f?kz=8399030

◆C项目工程(unix下)注意事项:http://post.baidu.com/f?kz=9087043

◆make file(unix下)易错地方:http://post.baidu.com/f?kz=9362741

◆补码问题:http://post.baidu.com/f?kz=11189164

◆DOS仿多线程问题:http://post.baidu.com/f?kz=11553963

◆栈的push和pop操作:http://post.baidu.com/f?kz=10820691

◆头文件如何理解:http://post.baidu.com/f?kz=7566720

◆编程解IQ测试:http://post.baidu.com/f?kz=11359491

◆逻辑破案的编程处理:http://post.baidu.com/f?kz=11283225

◆VC++中浮点数与字符串转化:http://post.baidu.com/f?kz=12061615

◆为何VC++6.0无法运行某些C程序:http://post.baidu.com/f?kz=11123696

◆逆序输出:http://post.baidu.com/f?kz=11484218

◆scanf:floating points format not linked:http://post.baidu.com/f?kz=12999839

◆c输出到打印机:http://post.baidu.com/f?kz=12482547

◆源代码-自我产生的程序:http://post.baidu.com/f?kz=14261864

◆PC 底层系统编程:http://post.baidu.com/f?kz=14071636

◆C中怎么制作函数库:http://post.baidu.com/f?kz=14190938

◆有关 FreeBSD 的网站:http://post.baidu.com/f?kz=14828500

◆一个画图程序:http://post.baidu.com/f?kz=15165712

◆算法--贪心法:http://post.baidu.com/f?kz=15321632

◆合并排序:http://post.baidu.com/f?kz=15330626

◆射击游戏:http://post.baidu.com/f?kz=15417872

◆怎样编一个螺旋数组:http://post.baidu.com/f?kz=15384659

C中怎么制作函数库:http://post.baidu.com/f?kz=14190938

10发90环有多少种可能:http://post.baidu.com/f?kz=15878635

Dev-C++4.9.9.2下载&使用教程:http://post.baidu.com/f?kz=40893628

FinC国人开发的嵌入式编程语言:http://post.baidu.com/f?kz=41127825

C语言的通讯录:http://post.baidu.com/f?kz=41627304

炸弹超人c语言简版:http://post.baidu.com/f?kz=37461531

求因子:http://post.baidu.com/f?kz=41674487

C语言中常见错误:http://post.baidu.com/f?kz=40525835

WPS Office 2005个人版免费下载:http://post.baidu.com/f?kz=41108925

TC2使用图解:http://post.baidu.com/f?kz=40504833

posted on 2007-12-06 21:36 MEYE 阅读(2941) 评论(2)  编辑  收藏

FeedBack:
# re: Linux 平台上的C语言调试工具!
2008-09-18 10:22 | domemt
totalview适合linux下开发的多种语言调试 是linux下运行的第一款图形化的调试工具  回复  更多评论
  
# re: Linux 平台上的C语言调试工具!
2010-06-23 16:30 | ed hardy
非常感谢楼主的提供,大大的有用!!  回复  更多评论
  

只有注册用户登录后才能发表评论。


网站导航: