标签:pause bbb 分享 crt aaa 字符 str images void
#define _CRT_SECURE_NO_WARNINGS
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
void main61()
{
char buf[20]= "aaaa"; //定义并且初始化
char buf2[] = "bbbb";
char *p1 = "111111";
char *p2 = malloc(100);
strcpy(p2, "3333");
system("pause");
return ;
}

标签:pause bbb 分享 crt aaa 字符 str images void
原文地址:http://www.cnblogs.com/xiaochige/p/6648762.html