一維陣列 · 如果你在初始化的時候未定義陣列大小,編譯器將會幫你決定陣列大小. 1 2 3 4 5 6 7 8 9 10 11, #include <stdio.h> int main(void) { · 不能存取 ... ... <看更多>
二維字串陣列 在 第5 章陣列 的推薦與評價
public class SimpleArray { public static void main(String[] args) { int[] score ... 從上面這個程式片段來看,就可以清楚的看出二維陣列的索引方式,您宣告了2 ... ... <看更多>
二維字串陣列 在 [問題] 二維字元陣列& 字串反轉- 看板C_and_CPP - 批踢踢實業坊 的推薦與評價
#include <stdio.h>
#include <string.h>
void reverse(char *str)
{
int i=0;
int j=strlen(str)-1;
char c;
while (j>i)
{
c=str[i], str[i]=str[j], str[j]=c;
i++, j--;
}
}
int main()
{
char *p_str[10]; //宣告一個二維指標字元陣列
p_str[0]="hello";
p_str[1]="world game";
reverse(p_str[0]); // 將資料反轉
reverse(p_str[1]);
return 0;
}
我的 reverse function 要怎麼改才會對@@?
一執行馬就當掉了... 二維陣列不能這樣用嗎?
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 122.116.231.17
... <看更多>