#include int main (void) { char hello [] = "Hello"; /* print size of array of characters */ printf ("size of string \"%s\" is %d\n", hello, sizeof hello); return 0; }