| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main(){ |
| 4 | int age = 15; |
| 5 | |
| 6 | if(age>10){ |
| 7 | printf("We are inside if\n"); |
| 8 | printf("Your age is greater than 10\n"); |
| 9 | } |
| 10 | if(age%5==0){ |
| 11 | printf("We are inside another if\n"); |
| 12 | printf("Your age is divisible by 50\n"); |
| 13 | } |
| 14 | return 0; |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected