私のプログラムでは、配列の最初のスペースをチェックする方法がわかりません
例えば
char *array[] ={'a','d','d','M',' ','-','P',' ','e'};
最初のスペースを取得し、配列の長さの前に最初のスペースを取得する方法
これが私のプログラムです:
printf("Please enter appointment: \n");
n = read(STDIN_FILENO,buf,80); /* read a line */
int result=strncmp(buf, "addM", get first space before length);
switch (result)
case 0: go to other function
または配列文字列の前の最初のスペースを比較する他の方法