Only C++ Header file gives random (integers - strings - floats - boolean)
It's extremely easy to setup. Just include random.hpp file in your code!
#include <iostream>
#include "random.hpp"
using namespace std;
int main(){
cout<< randint() << "\n";
}#include <iostream>
#include "random.hpp"
using namespace std;
int main(){
cout<< randchar() << "\n";
}#include <iostream>
#include "random.hpp"
using namespace std;
int main(){
cout<< randcharstr() << "\n";
}- get random integers
- get random chars
- get random chars as string