TVec *PrimeNumbers(int n);
Fills vector with prime numbers, starting from 2 up to the value of n.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | n | int |
Remarks:
Fills calling vector with prime numbers, starting from 2 up to the value of n. The memory for at least n elements is allocated. The maximum value of n is 1000. The prime numbers are fetched from a precreated table.
Declared in Dew::Math::TVec · Dew.Math/MtxVec.h · Cross-compiler