C Випадкові

2075 / C / Випадкові

 

<stdlib.h>
<time.h>

int main()
{
  srand(time(NULL));
  int a = -5 + rand() %10;

  return 0;
}