summaryrefslogtreecommitdiff
path: root/testapp/c_cpp_files/add.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/c_cpp_files/add.cpp')
-rw-r--r--testapp/c_cpp_files/add.cpp6
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;
+}