#include void main() { char string[] = "Mmmm! Love them pork rinds!"; char *s; int x = 0; /* initialize the pointer */ s = string; while(*s++) x++; printf("The string \"%s\" is %i characters long.",string,x); }