| 28 | } |
| 29 | |
| 30 | int main() |
| 31 | { |
| 32 | /* Enter your code here. Read input from STDIN. Print output to STDOUT */ |
| 33 | int n; char s[10000]; |
| 34 | scanf("%d",&n); //enter the number of test cases |
| 35 | |
| 36 | for(int i=0;i<n;i++) //looping : going to each test cases one by one |
| 37 | { |
| 38 | scanf("%s",s); //Entering the string |
| 39 | myFunction(s); //put the string in the defined function. |
| 40 | } |
| 41 | } |
| 42 |
nothing calls this directly
no test coverage detected