Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 427 Bytes

memsetFloat.md

File metadata and controls

11 lines (6 loc) · 427 Bytes

Pattern: memset() argument not a float

Issue: -

Description

The 2nd memset() argument is a float, its representation is implementation defined. memset() is used to set each byte of a block of memory to a specific value and the actual representation of a floating-point value is implementation defined.

Further Reading