/* * strspec2.c - store sentence in a char array. */ #include int main(void) { char hello[]="Hello, how are you?\n"; printf("%s", hello); printf("%s", hello); return 0; }