Re: memory address represented as a string

Aneesh Bhasin <[email protected]>
Newsgroups org.kernel.vger.linux-c-programming
Message-ID <[email protected]>
Hi Saurabh,

On Sun, Jul 26, 2009 at 1:09 PM, Saurabh Sehgal <[email protected]> wrote:
>
> Hi all,
>
> I had a quick question:
>
> Let's say I design a function with the signature:
>
> void * foo( char * addr ) ; ,
>
> where addr is a string that represents a valid memory address  ...
> so the way someone can call this function is ...
>
> char * addr = "0xae456778" // assume this is a valid memory address on
> the machine

This means that addr points to a memory location where the string
stored is "0xae456778"


>
> foo( addr ) ;
>
> Is it possible to take this address in string form, and assign it to
> an actual pointer of void * type ?

Yes, you can parse each individual character of the hex-format string
and convert it to its integral equivalent (you can find many samples
of this on internet...) and assing this value to a void * and then
return it back..

Hope that helps..
--
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.