C语言
剑若问天
这个作者很懒,什么都没留下…
展开
-
回调函数
// 01.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include //方法指针的格式为:int (*ptr)(char *p) 即:返回值(指针名)(参数列表) typedef int (*CallBackFun)(char *p); //为回调函数命名,翻译 2016-01-21 09:37:57 · 255 阅读 · 0 评论 -
字符串有关操作函数
// mystring.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include"stdio.h"int _tmain(int argc, _TCHAR* argv[]){ char szInput[256] = ""; char szBuf[256] = ""; char szString[256] = "Greate"; cha原创 2015-11-01 15:00:26 · 356 阅读 · 0 评论 -
打印9*9 乘法表
#include "stdafx.h"#include"stdio.h"int _tmain(int argc, _TCHAR* argv[]){int i = 0;int j = 0;for (i = 1; i < 10; i++){for (j = 1; j <i+1; j++){printf("%d*%d=%d", j, i, i*j);if (i*j<10){printf(" ");}el原创 2015-11-03 22:22:19 · 247 阅读 · 0 评论 -
命令行选择
#include "stdafx.h"const char * g_pcCmd[] = { "Create", "Add", "Insert", "Delete", "Find", "Modify" ,"Exit", "Help", "NULL"};const char * g_pcCmdInt[] = { "创建命令", "添加命令", "插入命令", "删除命令", "查找命令", "修原创 2015-11-03 22:31:07 · 312 阅读 · 0 评论 -
自编printf 函数
printf 函数原创 2015-11-18 17:10:31 · 396 阅读 · 0 评论 -
Itoa 函数
#include "stdafx.h"#include #include "Itoa.h"void Itoa(int nNum, char* pStr){ int nTemp = nNum; int nCount = 1; //char szBuf[256] = ""; if( nNum >= 0) //输入的整数是负数 { w原创 2015-11-18 17:17:37 · 313 阅读 · 0 评论 -
自编scanf函数
#include "stdafx.h"#include #include "ZRscanf.h"int Atoi(char *pStr);void Scanf(const char *pFormate,...){ char *pTemp = (char*)&pFormate; pTemp +=4; if( NULL != pFormate) { while(原创 2015-11-23 15:15:26 · 618 阅读 · 0 评论 -
排序
#include "stdafx.h"#include #include "SortFun.h"#include void ShowArray(int aNum[],int N){ int i = 0; for( i = 0; i < N ; i++) { printf("%d ",aNum[i]); } printf("\n");}原创 2015-12-13 21:30:44 · 257 阅读 · 0 评论