Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
int main() { char word[] = "Computer"; printf("The word '%s' has %d characters in it.", word, strlen(word)); return 0; }
The word 'Computer' has 8 characters in it.