#include <iostream>
#include <string>
int calculateLengthWithoutSpaces(std::string str) {
int lengthWithoutSpaces = 0;
for (char ch : str) {
if (ch != ' ') {
lengthWithoutSpaces++;
}
}
return lengthWithoutSpaces;
}
int main() {
std::string str = "C++ is a leading programming language used in game development";
std::cout << calculateLengthWithoutSpaces(str) << std::endl;
}
/*
run:
53
*/