| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main(){ |
| 4 | // condition ? expression-if-true : expression-if-false |
| 5 | int a = 345; |
| 6 | int b= 345452; |
| 7 | a>b?printf("a is greater"):printf("b is greater"); |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected