verb. When there is a picture of a hot broad on your computer screen and you move your mouse pointer in and out as if you were fornicating.
Steve-o: Check out this picture of Megan Fox
Gu: Oh yeah, I would do dirty things to her
Steve-o: Like this? (Moves mouse in and out of her vaginal region) How do you like being pointerfucked baby? You like that?
Gu: Oh yeah, I would do dirty things to her
Steve-o: Like this? (Moves mouse in and out of her vaginal region) How do you like being pointerfucked baby? You like that?
by OrtonBaker June 2, 2009
Get the Pointerfuck mug.A sexual act in which a male becomes fully erect moments before intercourse, then attaches (or to “Fix”) a bayonet (A trusty combat knife that attaches to the barrel of a military weapon for close combat) on to said erect penis and proceeds with intercourse, shouting “KILL” with every thrust. Popular among barracks bimbos stationed at Fort Drum.
by Stankychicken9133 March 20, 2010
Get the The West Pointer mug.Related Words
by Jenna J January 9, 2006
Get the penis pointer mug.by qqqqqqqq November 6, 2007
Get the pointer mug.A pointer is a data type of a programming language. Pointers are basically variables that can point to another location in memory.
Many programming headaches can be caused by the use of pointers if you're not sure what you're doing.
by obscure September 20, 2005
Get the Pointer mug.1) Someone who meets hiring quotas on two counts.
2) An employee who fits into two minority categories.
2) An employee who fits into two minority categories.
"That new black woman in accounting will never get fired, she's a two pointer"
Alternate spelling "2 Pointer"
Alternate spelling "2 Pointer"
by Lefty Flash September 30, 2008
Get the Two Pointer mug.A data type found in computer programming languages such as C++. It is a variable that holds the memory address of another variable.
Dynamic allocation of memory is possible through the use of pointers.
Dynamic allocation of memory is possible through the use of pointers.
Examples using pointers:
int i = 5; // declares an integer with an initial value of 5
int *p = &i; // declares a pointer to an integer and assigns
the address of i to it
cout << i; // outputs the number 5 to the console
cout << &i; // outputs the address of i to the console
cout << p; // same result as above
cout << *p; // outputs the value pointed to by p (5)
*p = 10; // changes the value of i to 10
int *arr = new int n; // creates an array containing
n elements and assigns its address to arr
(dynamic allocation)
delete arr; // deletes the memory space arr points to
(does not delete the pointer itself!)
int i = 5; // declares an integer with an initial value of 5
int *p = &i; // declares a pointer to an integer and assigns
the address of i to it
cout << i; // outputs the number 5 to the console
cout << &i; // outputs the address of i to the console
cout << p; // same result as above
cout << *p; // outputs the value pointed to by p (5)
*p = 10; // changes the value of i to 10
int *arr = new int n; // creates an array containing
n elements and assigns its address to arr
(dynamic allocation)
delete arr; // deletes the memory space arr points to
(does not delete the pointer itself!)
by C++ Master May 17, 2007
Get the pointer mug.