can anyone give me the program for pointer as function arguments....
thanks in advance

#include <stdio.h>

void foo(int *p)
{
    printf("%p: %d\n", (void*)p, *p);
}

int main(void)
{
    int i = 12345;
    int *p = &i;
    
    foo(p);
    
    return 0;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.