数组初始化

发布时间:2024年01月16日

系列文章目录

数组初始化



方法一


int main()
{	//像变量赋值一样,为数组的元素一次赋值
	int socres[5] = { 99,89,78,67,78 };
	for (int i = 0; i < 5; i++)
	{
		printf("%d\n", socres[i]);
	}
}

方法二

int main()
	//赋值时为数组前面元素赋值,如果数组长度超过赋值元素个数,后面元素依次默认赋值为0
{	int socres[5] = { 99,89 };
	printf("数组长度:%d\n", sizeof(socres) / sizeof(socres[0]));
	for (int i = 0; i < sizeof(socres) / sizeof(socres[0]; i++)
	{
		printf("%d\n", socres[i]);
	}
}

方法三

int main()
{	int socres[] = { 99,89,78 };
	printf("数组长度:%d\n", sizeof(socres) / sizeof(socres[0]));
	for (int i = 0; i < sizeof(socres) / sizeof(socres[0]); i++)
	{
		printf("%d\n", socres[i]);
	}
}

方法四

int main()
	//给数组赋值全为0
{	int socres[3] = { 0 };
	printf("数组长度:%d\n", sizeof(socres) / sizeof(socres[0]));
	for (int i = 0; i < sizeof(socres) / sizeof(socres[0]); i++)
	{
		printf("%d\n", socres[i]);
	}
}

END
在这里插入图片描述

文章来源:https://blog.csdn.net/westos_yanzheng/article/details/135635028
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。