| 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 | { |
| 8 | printf("Character is %c \n", st[i]); |
| 9 | } |
| 10 | |
| 11 | |
| 12 | return 0; |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected