Description
In file num.c there is a incorrect variable. We have only declared num1 and num2 but we are using num3 which is not there. We need to replace it with num2.
Why we need to fix this issue
This can lead to error in the execution of the program due to incorrect variable required. We should change num3 to num2 in line number 12.
How to reproduce the issue
To reproduce the issue open the file num.c and in line number 12 where is a wrong variable num3 declared.
Description
In file num.c there is a incorrect variable. We have only declared num1 and num2 but we are using num3 which is not there. We need to replace it with num2.
Why we need to fix this issue
This can lead to error in the execution of the program due to incorrect variable required. We should change num3 to num2 in line number 12.
How to reproduce the issue
To reproduce the issue open the file num.c and in line number 12 where is a wrong variable num3 declared.