#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int dado() {
int d;
d = (rand()%6)+1;
return d; // oppure solo return (rand()%6)+1
}
void main() {
srand(time(NULL));
printf("dado = %d\n", dado());
printf("dado = %d\n", dado());
printf("dado = %d\n", dado());
}
To embed this project on your website, copy the following code and paste it into your website's HTML: