MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / main

Function main

Hackerrank_problems/Let's Review/solution.C:30–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30int 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

Callers

nothing calls this directly

Calls 1

myFunctionFunction · 0.85

Tested by

no test coverage detected