From 041064618c290b50bd7ea213c4535b1f585d0f03 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 5 Jun 2013 17:28:58 +0530 Subject: c_cpp_files --- testapp/c_cpp_files/sample.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 testapp/c_cpp_files/sample.cpp (limited to 'testapp/c_cpp_files/sample.cpp') diff --git a/testapp/c_cpp_files/sample.cpp b/testapp/c_cpp_files/sample.cpp new file mode 100755 index 0000000..ab77b85 --- /dev/null +++ b/testapp/c_cpp_files/sample.cpp @@ -0,0 +1,7 @@ +#include +#include +int main(int argc, char* argv[]) +{ + std::cout << atoi(argv[1])+atoi(argv[2]) << std::endl; + return 0; +} -- cgit