Name: Anonymous 2014-12-15 23:10
How do you pronounce ``pointer to integer
1.
2.
3.
4. Other
p''?1.
int* p;2.
int * p;3.
int *p; (faggot)4. Other
p''?int* p;int * p;int *p; (faggot)Integer pointerinteger p int
*
p
; struct integer_pointer { int *p; }; import java.util.*;
public class Main {
public static void main(String[] args) {
Integer p = 11; // checkem
return p;
}
} int* a, b is a declaration of two variables of pointer-to-integer type. Writing it as int *a, b helps to eliminate that ambiguity. And 2 looks like a multiplication of a type by a variable, which is obviously nonsensical.