/*------------------------------------------------------------*/ /* Program chapter4_6 */ /* */ /* This program generates and prints ten random */ /* integers between user-specified limits. */ #include #include int main(void) { /* Declare variables and function prototype. */ unsigned int seed; int a, b, k; int rand_int(int a,int b); /* Get seed value and interval limits. */ printf("Enter a positive integer seed value: \n"); scanf("%u",&seed); srand(seed); printf("Enter integer limits a and b (a