用於動態內存中數組的工作程序。 需要等同於C.任何人都可以幫忙嗎?C++相當於C
const int n = 6;
char **words = (char**) malloc(n *sizeof(char*));
for(int i = 0 ; i < n; i++)
words[i] = (char*)malloc(50 * sizeof(int));
for(int i = 0; i < n; i++)
{
cin>>words[i];
}
cout<<endl;
for(int i = 0; i < n; i++)
{
if(words[i][0] == 'q')
cout<<words[i]<<endl;
}
這看起來像C&C++的混合物。你想刪除C++,並只有在C? – Matt
如果是這樣的話,cin&cout是唯一需要改變的位。 – Matt
是的,只有C代碼。 –