C Program to Generate Random Numbers Naim 04:26 Random Numbers * C Program - Generate Random Numbers */ #include<stdio.h>#include<conio.h>#include<stdlib.h>void main(){ clrscr(); int i; for(i=0; i<100; i++) { printf("%d\t",rand()); } getch();} Learn More : Share this Share on FacebookTweet on TwitterPlus on Google+
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.