How to generate a random int in C?

后端 未结 27 2086
故里飘歌
故里飘歌 2020-11-22 00:31

Is there a function to generate a random int number in C? Or will I have to use a third party library?

27条回答
  •  情深已故
    2020-11-22 00:41

    You can use the concept of a dangling pointer.

    A pointer pointing to a memory location that has been deleted (or freed) is called dangling pointer.

    It will show random values while printing.

提交回复
热议问题