Write a C++ Program to Generate Random Numbers between 0 and 100
Solution:
/* C++ Program to Generate Random Numbers between 0 and 100 */
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int i; //loop counter
int num; //store random number
cout<<"Generating Random Numbers Below ::
";
for(i=1;i<=10;i++)
{
num=rand()%100; //get random number
cout<<" "<<num<<" ";
}
cout<<"
";
return 0;
}
Output:
/* C++ Program to Generate Random Number between 0 and 100 */
Generating Random Numbers Below ::
41 67 34 0 69 24 78 58 62 64
Process returned 0
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain abstraction.
How are virtual functions implemented in c++?
How does c++ sort work?
Why do we need c++?
Explain stack unwinding.
Do the parentheses after the type name make a difference with new?
What is low level language in simple words?
What are c++ templates used for?
Can you please explain the difference between overloading and overriding?
What is an orthogonal base class in c++?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
Carry out conversion of one object of user-defined type to another?