⌨️ Programming in C

1. Basics of C

#include <stdio.h>
int main() {
    printf("Hello World\n");
    return 0;
}

2. Pointers & Arrays

Memory allocation, pointer arithmetic, structures.