Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#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.