其他分享
首页 > 其他分享> > 202006XX-静态存储持续性\无连接性

202006XX-静态存储持续性\无连接性

作者:互联网

//static.cpp-using a static local variable

#include <iostream>

//constants 常量

const int ArSize=10;

//function prototype  函数原型

void strcount(const char * str);

int main()

{

  using namespace std;

  char input[ArSize];

}

 

标签:ArSize,const,静态,char,int,static,using,连接性,202006XX
来源: https://www.cnblogs.com/whcsrj/p/13033326.html