/* Collection of code snippets by Arne Vajhøj */
/* (likely posted to comp.os.vms/INFO-VAX, INFO-TPU, MACRO32, eksperten.dk, newz.dk, LinkedIn or other place sometime between 1990 and now) */
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i,n[5];
    for(i=0;i<5;i++) n[i]=0;
    for(i=0;i<1000000;i++) n[(rand()%52+1)%5]++;
    for(i=0;i<5;i++) printf("%d\n",n[i]);
    return 0;
}
