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);}
Not registered? Create an account
Forgot Password?
Already a registered user? Login