Skip to main content
The best answer to choose in a multiple choice question if u dont know it!

(Also if the questions asks u to write the answer down, u can always change the C into the letter a, b, or d! That way u can complain to the teacher that he/she marked the test wrong!) LOL ITS PERFECTSSS
Retard: AHH fuck i dunno the answer to this question!

Other retard: When in doubt choose C!

Retard: I SEE!!

Smart Kid: If u study before u dont have to use C!

Retards: Smacks him in the head STFU nerd!
C by THEMEOWMIXMAN December 29, 2007
Related Words
C.O.W. c c hair C-row C.S. C.T. c u C.R. c notes C.O.T.
shorthand for "et cetera" (etc., not ect.)
shitty music? e.g. ICP, STS9, B2K, &c.
&c. by ToFastForClass September 23, 2010
A very sad emoticon of Toki Wartooth...or anyone with a Fu Manchu.
Sally: Jim, I have cancer.
Jim: :C
:C by letoh October 29, 2009
(c) is a way to refer to the origin of a quote. It does not necessary imply that the source has copyright on the quote.
the internet is a series of tubes
(c) senator ted stevens
(c) by suomalainen jebus August 11, 2008
An emoticon used to represent great despair or pain.
Some guy: Holy crap, i burned my hand while cooking ;ç;

Another guy: I failed my exams, i feel so horrible ;ç;
;ç; by ZDG91 December 5, 2010
An extremely powerful computer language on which the foundations of most other mid-level and RAD languages are based. Although it is not object-oriented like C++ and Java, it compiles into tighter code that occupies less space. It is used most frequently for applications designed to run in tight conditions, such as on a computer with a slow CPU and/or a small amount of memory. It is also closer to assembly language than it is to mid-level languages (on the spectrum of computer languages, C is toward the low end of the mid-level languages), making it more difficult to fully master than most languages.
//a more interesting Hello World program
#include <stdio.h>

typedef struct {
int x;
char c50;
void (*func)(char*);
} MY_HELLO_STRUCTURE;

MY_HELLO_STRUCTURE ms;

void draw(char* s) {
printf(s);
}

void main(void) {
ms.x++;
sprintf(ms.c,"Hello World (for the ")
switch (ms.x%10) {
case 1:
sprintf(ms.c+21,"%dst time",ms.x);
break;
case 2:
sprintf(ms.c+21,"%dnd time",ms.x);
break;
case 3:
sprintf(ms.c+21,"%drd time",ms.x);
break;
default:
sprintf(ms.c+21,"%dth time",ms.x);
break;
}
ms.func=draw;
(*ms.func)(ms.c);
return;
}
C by C programmer April 19, 2005