易截截图软件、单文件、免安装、纯绿色、仅160KB

C/C++编程必备

Windows C 程序设计入门与提高
http://download.chinaitlab.com/program/files/13246.html
单片机C语言入门
http://download.chinaitlab.com/program/files/12907.html
C++ 入门基础教程
http://download.chinaitlab.com/program/files/7617.html
C语言常用算法源代码
http://download.chinaitlab.com/program/files/12893.html
C常用算法程序集
http://download.chinaitlab.com/program/files/6225.html
C++ 语言命令详解
http://download.chinaitlab.com/program/files/4556.html
C语言编程要点
http://download.chinaitlab.com/program/files/11823.html
C语言编程基础
http://download.chinaitlab.com/program/files/11074.html
Borland c++使用手册
http://download.chinaitlab.com/program/files/4553.html
C语言数值算法程序大全(第二版)
http://download.chinaitlab.com/program/files/9247.html
Borland c++4.0安装与使用
http://download.chinaitlab.com/program/files/4546.html
C++ Builder 5.0经典入门
http://download.chinaitlab.com/program/files/4438.html
非C程序员C++入门自学教程
http://download.chinaitlab.com/program/files/3924.html
C语言常用函数手册
http://download.chinaitlab.com/program/files/1818.html
C++标准程序库自修教程与参考手册
http://download.chinaitlab.com/program/files/12644.html
C/C++指令字典
http://download.chinaitlab.com/program/files/13237.html
C语言图形函数介绍
http://download.chinaitlab.com/program/files/11643.html
C语言数值计算初步
http://download.chinaitlab.com/program/files/11640.html
C++Builder基础进阶
http://download.chinaitlab.com/program/files/6316.html
C++ 设计新思维
http://download.chinaitlab.com/program/files/6037.html
C++Builder英文帮助
http://download.chinaitlab.com/program/files/6315.html
C语言初学者入门讲座
http://download.chinaitlab.com/program/files/11641.html
C++完全参考手册
http://download.chinaitlab.com/program/files/9845.html
C游戏编程从入门到精通
http://download.chinaitlab.com/program/files/9253.html
《C++Builder学习大全》中文版
http://download.chinaitlab.com/program/files/2141.html
C++ Builder编程研究文档
http://download.chinaitlab.com/pr


相关文档:

C库函数(字符串函数)


C库函数
字符串函数
 
 
 
函数名
函数原型
功能
返回值
包含头文件
strcat
char *strcat(char *st1, char *str2)
把str2连接到str1后面
str1
string.h
strchr
char *strchr(char *str, int ch)
找出str指向的字符串中第一次出现字符串ch的位置
指向该位置的指针,未找到则返回空指针
......

在Eclipse中开发C/C++项目 转帖


C/C++ development with the Eclipse Platform
Pawel Leszek
 
摘要:通过本文你将获得如何在Eclipse平台上开发C/C++项目的总体认识。虽然Eclipse主要被用来开发Java项目,但它的框架使得它很容易实现对其他开发语言的支持。在这篇文章里,你将学会如何使用CDT(C/C++ Development Toolkit),一个在Eclipse平台上最 ......

C++ 调C C调c++

一、c++ 调C:
/* c语言头文件:cExample.h */
#ifndef C_EXAMPLE_H
#define C_EXAMPLE_H
#ifdef __cplusplus
extern "C"
{
#endif
int add(int x,int y);
#ifdef __cplusplus
}
#endif
 
#endif
/* c语言实现文件:cExample.c */
#include "cExample.h"
int add( int x, int y )
{
 return ......

linux环境下,c++库文件中的符号的含义

c++库文件中的符号的含义:
      所有的符号都是以下划线加上大写字母也就是"_Z"开头,对于在 类里或者命名空间中的符号,后面紧跟"N",然后是各个命名空间和类的名字,每个名字前是名字字符串的长度,随后是大写字母"E",对于一个函数,他的参数列表都在E后面, ......

C中括号优先级的思考

问题源于论坛的一道题目:
http://topic.csdn.net/u/20100216/21/ec98464e-a47e-4263-bb1c-a001e130ba87.html
下面是问题:
设int arr[]={6,7,8,9,10};
int *ptr=arr;
*(ptr++)+=123;
printf("%d,%d",*ptr,*(++ptr));
答案为什么是:8,8
问题的焦点也落在printf执行的问题上,到底先执行谁,后执行谁, 还有部分 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号