Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added a bit of code to solution to make it consistent with itself

...

Code Block
bgColor#ccccff
int nums[SIZE];
char *strings[SIZE];
int *next_num_ptr = nums;
int free_elements = SIZE;
int free_bytes;

/* perform operations on next_num_ptr as array fills decrement free_elements as it fills */

free_bytes = free_elements / sizeof(int);

Risk Assessment

Rule

Severity

Likelihood

Remediation Cost

Priority

Level

ARR36-C

2 (medium)

2 (probable)

2 (medium)

P8

L2

...