CLOCKS_PER_SEC

From cppreference.com
< cpp‎ | chrono‎ | c
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)
 
 
C-style date and time utilities
Functions
Time manipulation
Format conversions
Constants
CLOCKS_PER_SEC
Types
(C++17)
 
Defined in header <ctime>
#define CLOCKS_PER_SEC /*implementation defined*/

Expands to an expression (not necessarily a compile-time constant) of type std::clock_t equal to the number of clock ticks per second, as returned by std::clock().

Notes

POSIX defines CLOCKS_PER_SEC as one million, regardless of the actual precision of std::clock().

See also

returns raw processor clock time since the program is started
(function)
process running time
(typedef)