Sure, look up "srand" to 'seed' the random number generator first...so you actually may get randomness. Secondly after seeding the random number generator, you'll be using "rand" to get your random numbers.

Now look at your number range. You want to start at 179 and end at 190. So start your number at 179, and add a random number using rand modulated by 12 (result would be 0 - 11).

You'd end up with a value of 179 - 190.

Next step when outputting your number would to cast it as type char so that the ASCII character of number x is outputted to the screen.