欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c关于数组的疑惑

程序员文章站 2022-04-22 19:33:38
...
#include<stdio.h>
  main()
  {
  char a[]="asdas";
		printf("%s\n",a);
  }

不明白为什么【】【不需要加数字】

#include<stdio.h>
  main()
  {
  int a[]={1};
		printf("%d\n",a);
  }在这里插入代码片

结果为很大的数