MCPcopy Create free account
hub / github.com/SR-Sunny-Raj/Hacktoberfest2021-DSA / main

Function main

09. String/KMP_Algorithm.cpp:84–90  ·  view source on GitHub ↗

Driver program to test above function

Source from the content-addressed store, hash-verified

82
83// Driver program to test above function
84int main()
85{
86 string txt, pat;
87 cin >> txt >> pat;
88 KMPSearch(pat, txt);
89 return 0;
90}

Callers

nothing calls this directly

Calls 1

KMPSearchFunction · 0.70

Tested by

no test coverage detected