[Solved] What are potential issues with the following code? short foo() { short a,b,c; b=10; c = a + b; return c; } [closed]


Variable a was not initialized. It has an indeterminate value.

1

solved What are potential issues with the following code? short foo() { short a,b,c; b=10; c = a + b; return c; } [closed]