vogelbirb's blogvogelbirb's profile picture: a bird, specifically a green-cheeked conure, with a forest background

Getting started with systems programming

2026-05-29

I'll do this later.

#include <stdio.h>

void greet(char *name) {
    printf("Hello, %s!\n", name);
}

int main() {
    char name[] = "Matheus";
    greet(name);
    return 0;
}

This is a paragraph containing a footnote1.

1

This is the footnote content.