Being a big dork/geek rather than exclaim Argh! I will often say argv! and people will look at me funny, and I will laugh and laugh because they are dumb-dumb-heads.

argv is the standard variable name used in C for the array of incoming command line arguments. It is often seen in the declaration of the main funciton.

main(int argc, char *argv) {
}