String Pointers
String Initialization using Pointers
char *greeting = "Hello, World!";
Accessing Individual Characters in a String
char *message = "Good Morning"; char firstChar = *message; // Retrieves 'G'
Iterating Through a String with Pointers
char *word = "Programming"; while (*word != '\0') { printf("%c ", *word); word++; }