Horje
random number c Code Example
how to create random integers from a specific range in c language
//How to create random integers within a specific range in C langauge. 

srand(time(0))
number = (rand() % (upper - lower + 1)) + lower
//upper = max number
//lower = least number
how to genrate a random number in C
#include <time.h>
#include <stdlib.h>

srand(time(NULL));   // Initialization, should only be called once.
int r = rand();      // Returns a pseudo-random integer between 0 and RAND_MAX.
random number c
#include <stdio.h>
#include <time.h>

int main(){
   /*this is the seed that is created based on how much 
  time has passed since the start of unix time. 
  In this way the seed will always vary every time the program is opened*/
	srand(time(NULL));
  	int max;
  	int min;
  	int n;
  	printf("give me the minimum number?\n");
   	scanf("%d", &min);
	printf("give me the maximum number?\n");
	scanf("%d", &max);
  	//method to derive a random number
  	n = rand() % (max - min + 1) + min;
  	printf("random number:%d", n);
  	return 0;
}
  




16

Related
factorial c program using for loop Code Example factorial c program using for loop Code Example
sleep in c programming Code Example sleep in c programming Code Example
reverse a number in c Code Example reverse a number in c Code Example
show image in matplotlib Code Example show image in matplotlib Code Example
remove element from np array Code Example remove element from np array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9