diff options
Diffstat (limited to 'testapp/c_cpp_files/add.cpp')
-rw-r--r-- | testapp/c_cpp_files/add.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testapp/c_cpp_files/add.cpp b/testapp/c_cpp_files/add.cpp new file mode 100644 index 0000000..d3b7897 --- /dev/null +++ b/testapp/c_cpp_files/add.cpp @@ -0,0 +1,6 @@ +#include<stdio.h> +int add(int a,int b) +{ + printf("All Correct"); + return a; +} |