#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
system("cls");
cout<<randomize();
cout<<random();
return 0;
}
It is giving an error:
identifier "random() is undefined","randomize() is undefined".
I have just installed VS code and mingw and have set the path of mingw also i have installed the extensions C/C++ by Microsoft and Code runner in VS code.