| Current Path : /var/www/html/bibhas.ghoshal/ITP_2019/lab/ |
| Current File : /var/www/html/bibhas.ghoshal/ITP_2019/lab/rand.c |
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
for(int i = 0; i<5; i++)
printf(" %d ", rand());
return 0;
}