This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This codelet does not give you the exact time your C code ran for | |
// but a number signifying the nano seconds your C code ran for which | |
// includes your cpu speed. | |
#include<stdio.h> | |
#include<sys/time.h> | |
#include <inttypes.h> | |
int main() { | |