I'm trying to print a pointer of char type in c , i'm able to see the values and it's memory address as below
char *ptr = "I am a string";
printf("\n value [%s]\n",ptr);
printf("\n address [%d]\n",&ptr);
But when i print directly the pointer as below, it's showing error as Segmentation fault
char *ptr = "I am a string";
printf("\n value [%s]\n",*ptr);
Please tell me what's going wrong here
Note: if i change the format in printf to [%d] or [%i] it's printing.

printf("\n value [%s]\n",ptr);– Alok Save May 2 '12 at 14:52*ptris? What is the value and the type of*ptr? – Mr Lister May 2 '12 at 14:52printf("\n address [%p]\n",ptr);– user411313 May 2 '12 at 21:21