Find the total number of characters in the string
#include <stdio.h> #include <string.h> int main(void) { //variable char str[] = "Hello"; printf("%ld", strlen(str)); //this will give us 5 return 0; }