| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main(){ |
| 4 | // char st[] = {'a', 'b', 'c', '\0'}; |
| 5 | char st[] = "abc"; // Same as doing char st[] = {'a', 'b', 'c', '\0'}; |
| 6 | // for (int i = 0; i < 3; i++){ |
| 7 | // printf("%c", st[i]); |
| 8 | // } |
| 9 | |
| 10 | printf("%s", st); |
| 11 | |
| 12 | |
| 13 | return 0; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected