#include
using namespace std;
void countChars() {
char s[256];
cout << "Введите строку: ";<br> cin.getline(s, 256);
int count = 0;
for (unsigned int i = 0; i < strlen(s); i++)
count++;
cout << "Количество символов в строке: " << count << endl;<br>}
int main() {
setlocale(LC_ALL, "Russian");
countChars();
system("pause");
return 0;
}
//=================
// или так
//================
#include
using namespace std;
int countChars(char* s) {
int count = 0;
for (unsigned int i = 0; i < strlen(s); i++)
count++;
return count;
}
int main() {
setlocale(LC_ALL, "Russian");
char s[256];
cout << "Введите строку: ";<br> cin.getline(s, 256);
cout << "Количество символов в строке: " << countChars(s) << endl;<br> system("pause");
return 0;
}