(int *p)means pointer variable of p in integer datatype
I knew this meaning (int *p).But I want this meaning (int *)
Collapse
X
-
If you mean a function declaration
Code:void func1(int *p); // 1 void func2(int *); // 2
If you mean a function definition
Code:void func1(int *p) // 3 { // some code here *p = 5; } void func2(int *) // 4 { // some code here }
Comment
Comment