| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main() |
| 4 | { |
| 5 | char st[30]; |
| 6 | gets(st); // The entered string is stored in st! |
| 7 | |
| 8 | printf("%s", st); |
| 9 | // puts(st); |
| 10 | printf("hey"); |
| 11 | |
| 12 | return 0; |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected