Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

c - cannot understand this error

As I am a beginner in C

When I run the following C code :

#include<stdio.h>

void f(int *p)
{
    *p=3;
}

int main()
{
    int *p;
    f(&p);
    return 0;
}

I get these messages after compilation:

1) warning:passing arg 1 of 'f' from incompatible pointer type f(&p)

2) note: expected 'int *' but argument is of type 'int **' void f(int *p)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Please note:

&p is the memory address of a variable

*p is the actual value of the variable


So what you are doing is:

In main: You are generating a variable pointer p. And you are passing this pointers address to a function f.

f thinks it gets a pointer as parameter but it gets a memory address and obviusly can't handle it.

More information is here


Hope I could help!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...