Your IP : 216.73.216.40


Current Path : /var/www/html/bibhas.ghoshal/ITP_2019/lab/
Upload File :
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; 
}