Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

Fun mechanics! Where did the number 37 come from?

(+1)
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
    srand(time(NULL));
    int x = rand() % 100 + 1;
    printf("%d\n", x);
    return 0;
}

Language may differ

It just sounded cool ngl