You can easily implement this using the rand function:
bool TrueFalse = (rand() % 100) < 75;
The rand() % 100 will give you a random number between 0 and 100, and the probability of it being under 75 is, well, 75%. You can substitute the 75 for any probability you want.