题目内容

以下代码能够编译通过吗,为什么?
unsigned int const size1 = 2;
char str1[ size1 ];
unsigned int temp = 0;
cin >> temp;
unsigned int const size2 = temp;
char str2[ size2 ];

查看答案
更多问题

编写一个 C 函数,该函数在一个字符串中找到可能的最长的子字符串,且该字符串是由同一字符组成的。

c和c++中的struct有什么不同?

2:int main()
{
int x=3;
printf("%d",x);
return 1;
}
问函数既然不会被其它函数调用,为什么要返回1?

g) 一个指向函数的指针,该函数有一个整型
参数并返回一个整型数(A pointer to a function that
takes an integer as an argument and returns an
integer)

答案查题题库