#define _CRT_SECURE_NO_WARNINGS
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
void main11()
{
int a[] = {1, 2};
int b[100] = {1, 3};
int c[200] = {0}; //编译的是 就已经确定 所有的值 为零
memset(c, 0, sizeof(c)); //显示的 重置内存块
//对一维数组 C规定:
//c是数组首元素的地址 c+1 步长 4个字节
//&c 是整个数组的地址 //&c+1 步长 200*4
printf("hello...\n");
system("pause");
return ;
}