#include <sys/syscall.h>
#include <stdio.h>
#include <unistd.h> int main()
{
printf("clock ticks per second = %ld\n", sysconf(_SC_CLK_TCK));
return ;
}
2024-02-10 21:44:16
#include <sys/syscall.h>
#include <stdio.h>
#include <unistd.h> int main()
{
printf("clock ticks per second = %ld\n", sysconf(_SC_CLK_TCK));
return ;
}