My PC configuration is
Intel Core i3-2100 CPU @3.10GHz
Windows7 64 bit
But when I'm executing below code why it's printing 1000?
#include<stdio.h>
#include<conio.h>
#include<time.h>
main()
{
printf("Clock %d",CLOCKS_PER_SEC);
getch();
}
The actual clock speed should be around 3.1x10^12 per sec right?