problem 56 #include <stdio.h> int main() { char str[50]; char *ch; printf("\n Enter String : "); scanf("%s", str); ch = &str[0]; while (*ch != '\0') { printf("\n Position : %u Character : %c", ch, *ch); ch++; } return 0; } Copy Enter a string: Show Position and Character