题目内容

你有什么问题吗?

查看答案
更多问题

有取得什么资格吗?

1:(void *)ptr 和 (*(void**))ptr的结果是否相同?其中ptr为同一个指针

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

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

答案查题题库