Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
printf("\n value [%s]\n",ptr); – Alok Save May 2 '12 at 14:52
@Sukumar Do you know what *ptr is? What is the value and the type of *ptr? – Mr Lister May 2 '12 at 14:52
@Als I don't think quoting Sukumar's second line of code will help in understanding what the issue is. – Mr Lister May 2 '12 at 14:53
@MrLister: I would advice to read properly before commenting. And I posted it as an comment because I didn't have enough time or motivation to explain the answer in detail.Feel free to add your own answer instead of criticizing others. – Alok Save May 2 '12 at 14:55
1  
the correct format specifier for a pointer is %p, not %d, therefore better is printf("\n address [%p]\n",ptr); – user411313 May 2 '12 at 21:21
show 3 more comments

3 Answers

up vote 3 down vote accepted

The %s format specifier expects a pointer to a 0-terminated char array. If the corresponding argument to printf is *ptr, a char, that is a) undefined behaviour and b) probably leads to the value of the character (promoted to an int) and possibly some arbitrary adjacent bytes, being interpreted as a pointer. Following that presumed pointer is likely to access memory not allocated to your program.

share|improve this answer

*ptr is a char, not a char pointer, and %s expects a char pointer (to a C-string). When treating the char as a pointer, printf tries to access an invalid memory address, and you get a segmentation fault.

share|improve this answer
Yeap... trying to access memory on 0x00 - 0xff :) – MrJames May 2 '12 at 14:57
@MrJames address 0x0049 to be precise. – Mr Lister May 2 '12 at 14:58

When you pass in the format "%s" into printf, the function expects a pointer to an array of chars.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.