跳转至

A tour of Computer Systems

Information Is Bits + Context

hello.c

C
1
2
3
4
5
6
#include <stdio.h>

int main() {
    printf("hello, world\n");
    return 0;
}

ASCII standard represents each character with a unique byte-size integer value.