C

From XPUB & Lens-Based wiki

... a programming language to follow B. C is the core language of Unix and later GNU/Linux and the liberation of it's compiler software, gcc (or the Gnu's Not Unix C Compiler), a foundation of the Free Software movement.

Variables

Variables in C are strictly typed meaning they always are one particular kind of representation of information (an integer number, a character, a string of text).

  • char
  • int
  • float
  • double
int i = 0;
printf("%d\n", i);

(short and long are "qualifiers" that then can be used before the word in as in:

short int foo;
long int bar;

In these cases the word int can be left out.)

Strings

Strings in C are arrays of characters. Abstractly a string in C is simply a pointer; that is, a numeric memory location pointing to the first character of the text in the memory.

char text[] = "pioneering jazz electronic organ recordings";

int textlen = strlen(text);
for (int i=0; i<textlen; i++) {
    printf("%d\n", i);
}

Loops

Like, Bash, C has a for loop:

for (int i=0; i<10; i++) {
    printf("Hello %d" % i);
}