Code::Blocks Forums

User forums => Help => Topic started by: Crabby on September 03, 2021, 02:40:49 pm

Title: code::blocks does not autocomplete keywords from "cstdlib"
Post by: Crabby on September 03, 2021, 02:40:49 pm
I have this code:

#include <iostream>
#include <cstdlib>
#include <ctime>

using namespace std;

void printRandomDice(int amount) {
    srand(time(0));

    for (int i; i < amount; i++) {
        cout << (rand() % 6) + 1 << endl;
    }
}

int main()
{
    printRandomDice(5);
}



It works perfectly but the thing is that when I was writing "rand()" and "srand(time(0))", it didn't show autocomplete options for those functions. I really want to knw how i can get this fixed.