79623008

Date: 2025-05-15 09:31:24
Score: 1
Natty:
Report link
/*
 *      random_uint64.c
 */

#include <stdlib.h>
#include <stdint.h>

uint64_t
random_uint64()
{
        return( (uint64_t)random( ) ^ ( (uint64_t)random( ) << 17 ) ^ ( (uint64_t)random( ) << 33 ) );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rogier van de Pol