Wydanie R2020.05.1

This commit is contained in:
Jan Potocki
2020-05-09 22:17:22 +02:00
parent 8f4d0e843f
commit 0ba84bef75
11 changed files with 339 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#include <stdio.h>
#include <unistd.h>
// Jan Potocki 2020
unsigned long long timestamp();
int main()
{
unsigned long long tstamp1, tstamp2;
tstamp1 = timestamp();
sleep(1);
tstamp2 = timestamp();
printf("Cycles: %llu\n", tstamp2 - tstamp1);
return 0;
}