aboutsummaryrefslogtreecommitdiffstats
path: root/lewisnumber.c
blob: 963ceddc02e95db5e380c1861997b084bcabd2e4 (plain)
1
2
3
4
5
6
7
8
#include<stdio.h>
#include<stdlib.h>
#include<time.h>

int main ( int argc, char *argv[] ) {
    srand( time(NULL) );
    printf("Lewis, your number is %d.\n", rand());
}