[ad_1]
Implement a function called countCharacters,which takes a stringconst char *strand returns an integer. Use a while loop to count the number of characters in the entered string and return it.
Apa yang saya coba:
Implement a function called countCharacters,which takes a stringconst char *strand returns an integer. Use a while loop to count the number of characters in the entered string and return it.
Solusi 1
Anda tidak akan meminta siapa pun mengerjakan pekerjaan rumah Anda, jadi inilah beberapa petunjuk yang akan mengarahkan Anda pada jawaban Anda sendiri hanya dengan sedikit riset dari pihak Anda:
– Senar gaya AC adalah a char
Himpunan; akhir array dilambangkan dengan karakter nol
– Anda dapat menggunakan a while
loop untuk menghitung anggota array
C
#include <stdio.h> #include <string.h> int countCharacters(const char *str) { //You need to work this bit out using information above } return count; } int main() { const char *str = "Hello, World!"; printf("The string '%s' has %d characters.\n", str, countCharacters(str)); return 0; }
[ad_2]
コメント