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

Suppose we have a variable k which is equal 7:

int k=7;
int t=&k;

But this does not work. What's the mistake?

share|improve this question
4  
What does it mean when you say "it does not work"? Your compiler must have given you an error message. What was it? And what was unclear about that message? – sbi Jul 6 '10 at 12:54

3 Answers

up vote 3 down vote accepted

&k takes the address of k. You probably mean

int *t = &k;

I have a good read for you: Alf P. Steinbach's pointer tutorial.

share|improve this answer

You probably meant:

int k=7;
int *t=&k;
share|improve this answer

You declare t as of type int and try to assign a value of type int*. int* cannot implicitely cast to type int which leads to the error you are observing. The solution is simple: declar t as int*. However, it seems you have no deeper understanding of pointers so you should fix that first before trying anything else.

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.