Or login with:
s.
#include <stdio.h> #include <string.h> int main() { char s[20] = "abcde1010101"; printf("The length of \"%s\" is %d characters.\n", s, strlen(s)); return 0; }
The length of "abcde1010101" is 12 characters.
You must login to leave a messge