Previously, I posted more of my “stream of consciousness” ramblings ending this bit of code: #include #include // for EXIT_SUCCESS #include // for strlen() int main() { const char *stringPtr = “hello”; printf (“sizeof(stringPtr) = %ldn”, sizeof(stringPtr)); printf (“strlen(stringPtr) = %ldn”, strlen(stringPtr)); printf (“n”); const char string[] = “hello”; printf …
From: Retro Roundup