...
Code Block | ||
---|---|---|
| ||
const float pi = 3.14159f; float degrees; float radians; /* ... */ radians = degrees * pi / 180; |
...
Noncompliant Code Example
Wiki Markup |
---|
In this non-compliantnoncompliant code example a macro is used to define a maximum value, but there is no type information associated with the macro \[[Dewhurst 02|AA. C References#Dewhurst 02]\]. |
...