| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main(){ |
| 4 | |
| 5 | if(1){ |
| 6 | printf("This if is executed!\n"); |
| 7 | } |
| 8 | if(2345){ |
| 9 | printf("This if is also executed!\n"); |
| 10 | } |
| 11 | if(2.74){ |
| 12 | printf("This if is also executed!\n"); |
| 13 | } |
| 14 | if('c'){ |
| 15 | printf("This character inside if is also executed!\n"); |
| 16 | } |
| 17 | if(0){ |
| 18 | printf("I am zero - I am not executed\n"); |
| 19 | } |
| 20 | return 0; |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected