我正在使用下面的代碼計算字符串中的空格,但我不想計算空格。如何不計算空格,同時計算字符串的長度c
#include<stdio.h>
#include<conio.h>
void main()
{
char*ptr,str[30];
int size=0;
int word=0;
puts("enter the string");
gets(str);
fflush(stdin);
for(ptr=str;*ptr!='\0',ptr++)
{
size++;
}
printf("size of string is = %d",size);
getchar();
}
,這是你寫的代碼?沒有新線,沒有空格,什麼都沒有? –
這個python怎麼樣? –
'void main'不是標準c。你使用的是非標準的編譯器嗎? – user2079303