45. Predict the output or error(s) of the following c code Peter Vegas C - Predict the Output 1 2 3 4 5 6 main() { extern out; printf("%d", out); } int out=100; main() { extern out; printf("%d", out); } int out=100; Click here to view the answer Answer: 100 Explanation: This is the correct way of writing the previous program. Peter Vegas