centralized performance resources

This commit is contained in:
Barrett Ruth 2026-01-10 12:21:52 -05:00
commit 50b15a1522
63 changed files with 328466 additions and 0 deletions

14
ocw/1/c-primer/sizes.c Normal file
View file

@ -0,0 +1,14 @@
// Copyright (c) 2012 MIT License by 6.172 Staff
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
void subprocedure(int x, int y) {
int z = x + y;
}
int main() {
int x = 3, y = 5;
subprocedure(x, y);
}