diff --git a/Examples/C/Hello.c b/Examples/C/Hello.c index 4934899..0e6fef4 100644 --- a/Examples/C/Hello.c +++ b/Examples/C/Hello.c @@ -20,6 +20,4 @@ int main() printf("\nDivided: %f", Divide(num1, num2)); printf("\n\n"); - - system("PAUSE"); } diff --git a/Examples/Cpp/Hello.cpp b/Examples/Cpp/Hello.cpp index 5754ac6..57363d9 100644 --- a/Examples/Cpp/Hello.cpp +++ b/Examples/Cpp/Hello.cpp @@ -22,6 +22,4 @@ int main() cout << "Divided: " << Library::Divide(num1, num2) << "\n"; cout << "\n"; - - system("PAUSE"); }