RosettaCodeData/Task/Random-number-generator--device-/C/random-number-generator--device--2.c

11 lines
174 B
C
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
#include <inttypes.h> /* PRIu32 */
#include <stdlib.h> /* arc4random */
#include <stdio.h> /* printf */
2013-04-10 23:57:08 -07:00
int
main()
{
2014-01-17 05:32:22 +00:00
printf("%" PRIu32 "\n", arc4random());
return 0;
2013-04-10 23:57:08 -07:00
}