What happens to a declared, uninitialized variable in C? Does it have a value?

Viewed 162551

If in C I write:

int num;

Before I assign anything to num, is the value of num indeterminate?

9 Answers
Related