開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Linux GCC
問題(Question):
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char **argv)
{
char *line = "abc dddd efg hhhhhhhhhh";
/* 從第五個位元開始抓6個位元
也就是抓出來的結果想要是
"dddd e"
目前找C的字串處理函式找不太到
不知道怎麼抓出來 感謝大大的指導
*/
return 0;
}