@teja : r u looking for something like this.......
#include<stdio.h>
#include<stdlib.h>
class Hai
{
 public :
    int* getPointerToPrivate()
    {
        return &i;
    }
    void setI(int j)
    {
        i=j;
    }
 private:
    int i;
};
main()
{
 Hai h;
 h.setI(10);
 int *i=h.getPointerToPrivate();
 printf("%d",*i);
}

On Thu, Sep 15, 2011 at 6:41 AM, teja bala <pawanjalsa.t...@gmail.com>wrote:

> How to access class private data members with a pointer?
>
> thx in advance?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
>


-- 

**Please do not print this e-mail until urgent requirement. Go Green!!
Save Papers <=> Save Trees
*BharatKumar Bagana*
**http://www.google.com/profiles/bagana.bharatkumar<http://www.google.com/profiles/bagana.bharatkumar>
*
Mobile +91 8056127652*
<bagana.bharatku...@gmail.com>

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to