Skip to main content

C

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;
}
by C programmer April 19, 2005
mugGet the Cmug.

c++

Simple to learn, high-level, object-oriented programming language.
Many 1000 page doorstops are available for teaching this language. (I'm not poking fun at these books. Some of them are actually useful.)
#include<iostream>
using namespace std;

int main()
{
boozeType beerBrand;

if(cash)
buy_beer(beerBrand);
else
bum_beer_off_buddies();


do
{
beer++;
}while(sober);

return 0;
}
by RC February 6, 2005
mugGet the c++mug.

(_)_) c==/_)_)

Peter: What'd you do last night?
Trent: (_)_) c==/_)_)
Peter: O I C.
by Shanaynay Bonqueesha January 12, 2008
mugGet the (_)_) c==/_)_)mug.

C

Carbon, C, has an Atomic Number of 6, and an Atomic Weight of 12.011.
by lkpjh August 13, 2004
mugGet the Cmug.

c

"She can't take much more, Cap'n! We're at .8 c now!"
by tradesman April 1, 2003
mugGet the cmug.

>:c

A very angry face, Normally used in IM.
Person 1: Hey man, sorry i slept with your Girlfriend.
Person 2: >:c
by SoAdFrEaK June 10, 2008
mugGet the >:cmug.

a/c

Diffused downstem, RooR A/C and RooR Custom Bowl.
by Cpt Cannabis October 14, 2009
mugGet the a/cmug.

Share this definition