在我的程序中,我不知道如何检查数组的第一个空格
例如
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
或其他方法来比较数组字符串之前的第一个空格