InterviewSolution
Saved Bookmarks
| 1. |
What is a logical error? |
|
Answer» Logical errors occur during the coding process, when the type of the data is wrongly selected and is used for computation. [int a,b,sum; printf(“\n enter the two numbers”); scanf(“%d%d”,&a,&b); sum = a + b; printf(“\nsum is%d”,b);] |
|