Skip to content

Instantly share code, notes, and snippets.

@NobodyOnSE
NobodyOnSE / original_test.c
Created July 11, 2014 13:46
Discuss some "benchmarking" code for the optimality of prefix vs. postfix incrementation
#include<stdio.h>
int main(void) {
int i = 5;
++i; //or i--
printf("%i", i);
return 0;
}