What is the output of C Program with functions and pointers.?

int myshow(int *);

void main()
{
int a=10;
myshow(&a);
}

int myshow(int *k)
{
printf("Received %d, ", *k);
}

Posted on by