Assign value to a char pointer
#include <stdio.h> int main(void) { char *p; p = "one two three"; printf(p); return 0; }