Skip to content

Instantly share code, notes, and snippets.

View n-eq's full-sized avatar

Nabil n-eq

View GitHub Profile
@n-eq
n-eq / cachecache.c
Created April 16, 2017 12:40
Cache illustration
#include <stdio.h>
#include <stdlib.h>
#define N 2000
#define M 1000
int t[M][M] = {{0}};
int main(){
for (int i = 0; i < N; i++)