#include #include #include int main(void) { srand((unsigned) time(NULL)); printf("Random number between -10 and 10: %d\n", rand() % 21 - 10); return 0; }