Inspiration

MLH INIT

What it does

generates random number

How we built it

using C++

'''C++

include

include

int main(void) { // This program will create same sequence of // random numbers on every program run

for(int i = 0; i<5; i++)
    printf(" %d ", rand());

return 0;

}

'''

Built With

Share this project:

Updates