Mega Code Archive

 
Categories / C / Math
 

A random number is chosen between 1 and 100

#include <stdio.h> #include <stdlib.h> int main() {    int number_to_guess = rand() % 100 + 1;    printf("%d ",number_to_guess); }