What is the output of the following program ?
#include <stdio.h> 
#include <stdlib.h> 

int main () 
{
 int a;
int b;
 for(a=1; a<11; a++) 
{
 b = rand();
 printf( "%d\n", b ); 
return 0; 
}

Posted on by