need help writing a c++ program for school

i have a program due on monday for my c++ class and i dont have a clue about pointers. need major help the program isn't hard for someone who understands basic c++. Will Pay $$$ for help
[193 byte] By [hhemstreet] at [2007-11-17 14:00:08]
# 1 Re: need help writing a c++ program for school
understanding the concept of pointer is the major difficulity that all the biginner c programmers experience. I recommend you to check some web pages that specificly dealing with it. there are lots of pages about it.

-------------
Heaven lies about us in our infancy!
Shades of the prison-house begin to close
Upon the growing Boy,(William Wordsworth)
-------------
*Don't forget to reply me
soichih at 2007-11-9 12:40:24 >
# 2 Re: need help writing a c++ program for school
What kind of program do you require? Send details.
Kajal Jain at 2007-11-9 12:41:25 >
# 3 Re: need help writing a c++ program for school
I am experienced C++ programmer.
i have online books for that if you need it let me know.

anyhow send you problem at aamirdogar@hotmail.com and i will send you the program.

or if you just need the pointer help then look that pointer is something pointing to a particular memeory address. we declare it as int *a; when we want to pass it by address then we use func_name(a);
a is the address of the *a.

For more help contact me..
aamirdogar at 2007-11-9 12:42:23 >
# 4 Re: need help writing a c++ program for school
Well, i basically dont know anything but...
if you wanted a pointer to point to a variable with the name "num1" and you wanted to call it "pnum1" you would put in:

int* pnum1 = &num1;

but you would have to make sure you have int num1;

somewhere above it

HTH

~HeX~
HeXaDeCiMaL at 2007-11-9 12:43:29 >