A function in C that reads in a String of text and counts the number of characters including space in the text
The text max is 250
Answers:
strlen(const char *s)
Other answers:
#include <string.h>
char str[250] = "Hellooo this is a test";
int len = strlen(str); //Len = 22