Agent 99 is the greatest character name on any TV Show.  // prints a random number #include <stdio.h> #include <stdlib.h> #include <time.h> int main () {        int num=0;        time_t *tloc;        /*         * get random numbers         */        srand(time(tloc));        num=rand();        printf(“%d\n”, num);        exit(0); }
Continue Reading

