Skip to content

Commit f8e781c

Browse files
TylerMSFTTylerMSFT
authored andcommitted
update links
1 parent a80b520 commit f8e781c

File tree

1 file changed

+3
-3
lines changed
  • docs/c-runtime-library/reference

1 file changed

+3
-3
lines changed

docs/c-runtime-library/reference/rand.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "rand"
33
description: "API reference for rand, which generates a pseudorandom number by using a well-known and fully-reproducible algorithm."
4-
ms.date: "4/2/2020"
4+
ms.date: "7/7/2021"
55
api_name: ["rand", "_o_rand"]
66
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-utility-l1-1-0.dll", "ntoskrnl.exe", "api-ms-win-crt-private-l1-1-0.dll"]
77
api_type: ["DLLExport"]
@@ -11,7 +11,7 @@ helpviewer_keywords: ["generating pseudorandom numbers", "random numbers, genera
1111
---
1212
# `rand`
1313

14-
Generates a pseudorandom number by using a well-known and fully-reproducible algorithm. A more programmatically secure version of this function is available; see [`rand_s`](rand-s.md). Numbers generated by **`rand`** are not cryptographically secure. For more cryptographically secure random number generation, use [`rand_s`](rand-s.md) or the functions declared in the C++ Standard Library in [`<random>`](../../standard-library/random.md).
14+
Generates a pseudorandom number. A more programmatically secure version of this function is available; see [`rand_s`](rand-s.md). Numbers generated by **`rand`** are not cryptographically secure. For more cryptographically secure random number generation, use [`rand_s`](rand-s.md) or the functions declared in the C++ Standard Library in [`<random>`](../../standard-library/random.md).
1515

1616
## Syntax
1717

@@ -124,4 +124,4 @@ Random number in a range demo ====
124124
[Floating-Point Support](../../c-runtime-library/floating-point-support.md)\
125125
[`srand`](srand.md)\
126126
[`rand_s`](rand-s.md)\
127-
[C++ `<random>` library](https://docs.microsoft.com/cpp/standard-library/random)
127+
[C++ `<random>` library](../../standard-library/random.md)

0 commit comments

Comments
 (0)