Either bubble sort or insertion, you probably noticed that English is not my native language so I have trouble understanding articles on wikipedia, which is why I need someone to explain this to me in basic, simple English, I know you guys hate these kind of stuff but I seriously have no where else to go.
"sizeof" is not a function, it's an operator. Programmers tend to use the functional notation which can lead them to believe that "sizeof" is a function. For instance, either way is legal C++:
1 2
sizeofint;
sizeof( int );
The same can be said for "return" except the operator part.