hey guys can anyone tell me what is actually happening in the code given below.??
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int randNum = (rand() % 100) + 1;
while (randNum != 100){
cout << randNum << ",";
randNum = (rand() % 100) + 1;
}
cout<< endl;
return 0;
}