summaryrefslogtreecommitdiff
path: root/testapp
diff options
context:
space:
mode:
Diffstat (limited to 'testapp')
-rw-r--r--testapp/c_cpp_files/add.c4
-rw-r--r--testapp/c_cpp_files/add.cpp6
-rw-r--r--testapp/c_cpp_files/array_sum.c10
-rw-r--r--testapp/c_cpp_files/array_sum.cpp10
-rw-r--r--testapp/c_cpp_files/fact.c10
-rw-r--r--testapp/c_cpp_files/fact.cpp16
-rw-r--r--testapp/c_cpp_files/greatest.c15
-rw-r--r--testapp/c_cpp_files/greatest.cpp15
-rw-r--r--testapp/c_cpp_files/hello_name.c16
-rwxr-xr-xtestapp/c_cpp_files/main.cpp30
-rwxr-xr-xtestapp/c_cpp_files/main2.c28
-rwxr-xr-xtestapp/c_cpp_files/main_array_sum.cpp32
-rwxr-xr-xtestapp/c_cpp_files/main_fact.cpp30
-rwxr-xr-xtestapp/c_cpp_files/main_greatest.cpp32
-rwxr-xr-xtestapp/c_cpp_files/main_hello_name.c29
-rwxr-xr-xtestapp/c_cpp_files/main_palindrome.cpp30
-rw-r--r--testapp/c_cpp_files/palindrome.c20
-rw-r--r--testapp/c_cpp_files/palindrome.cpp19
-rwxr-xr-xtestapp/c_cpp_files/sample.c20
-rwxr-xr-xtestapp/c_cpp_files/sample.cpp7
20 files changed, 379 insertions, 0 deletions
diff --git a/testapp/c_cpp_files/add.c b/testapp/c_cpp_files/add.c
new file mode 100644
index 0000000..c829971
--- /dev/null
+++ b/testapp/c_cpp_files/add.c
@@ -0,0 +1,4 @@
+int add(int a,int b)
+{
+ return a-b;
+}
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;
+}
diff --git a/testapp/c_cpp_files/array_sum.c b/testapp/c_cpp_files/array_sum.c
new file mode 100644
index 0000000..619a23c
--- /dev/null
+++ b/testapp/c_cpp_files/array_sum.c
@@ -0,0 +1,10 @@
+int array_sum(int a[5])
+{
+ int i=0, sum=0;
+ for(i=0;i<5;i++)
+ {
+ sum = sum + a[i];
+ }
+ return sum;
+}
+
diff --git a/testapp/c_cpp_files/array_sum.cpp b/testapp/c_cpp_files/array_sum.cpp
new file mode 100644
index 0000000..9b82d3b
--- /dev/null
+++ b/testapp/c_cpp_files/array_sum.cpp
@@ -0,0 +1,10 @@
+int array_sum(int a[])
+{
+ int i=0, sum=0;
+ for(i=0;i<5;i++)
+ {
+ sum = sum + a[i];
+ }
+ return sum;
+}
+
diff --git a/testapp/c_cpp_files/fact.c b/testapp/c_cpp_files/fact.c
new file mode 100644
index 0000000..e3665f5
--- /dev/null
+++ b/testapp/c_cpp_files/fact.c
@@ -0,0 +1,10 @@
+int factorial(int a)
+{
+ int i,fact=1;
+ for(i=1;i<=a;a--)
+ {
+ fact=fact*a;
+ }
+ return fact;
+
+}
diff --git a/testapp/c_cpp_files/fact.cpp b/testapp/c_cpp_files/fact.cpp
new file mode 100644
index 0000000..f9b7458
--- /dev/null
+++ b/testapp/c_cpp_files/fact.cpp
@@ -0,0 +1,16 @@
+#include<stdio.h>
+int fact = 1;
+int factorial(int a)
+{
+ printf("%d\n",a);
+ if(a<1)
+ {
+ printf("\nfinal");
+ return 1;
+ }
+ else
+ {
+ printf("count\n");
+ return a*factorial(a-1);
+ }
+}
diff --git a/testapp/c_cpp_files/greatest.c b/testapp/c_cpp_files/greatest.c
new file mode 100644
index 0000000..0194855
--- /dev/null
+++ b/testapp/c_cpp_files/greatest.c
@@ -0,0 +1,15 @@
+int greatest(int a,int b,int c)
+{
+ if(a>b && a>c)
+ {
+ return a;
+ }
+ else if(b>c)
+ {
+ return b;
+ }
+ else
+ {
+ return c;
+ }
+}
diff --git a/testapp/c_cpp_files/greatest.cpp b/testapp/c_cpp_files/greatest.cpp
new file mode 100644
index 0000000..0194855
--- /dev/null
+++ b/testapp/c_cpp_files/greatest.cpp
@@ -0,0 +1,15 @@
+int greatest(int a,int b,int c)
+{
+ if(a>b && a>c)
+ {
+ return a;
+ }
+ else if(b>c)
+ {
+ return b;
+ }
+ else
+ {
+ return c;
+ }
+}
diff --git a/testapp/c_cpp_files/hello_name.c b/testapp/c_cpp_files/hello_name.c
new file mode 100644
index 0000000..8fa2519
--- /dev/null
+++ b/testapp/c_cpp_files/hello_name.c
@@ -0,0 +1,16 @@
+#include<string.h>
+#include<stdio.h>
+
+char *message(char a[])
+{
+ return (strcat("hello",a));
+}
+
+main()
+{
+ printf("he\n");
+ char q[]="re";
+ char s[20];
+ s= message(q);
+ printf("%s",s);
+}
diff --git a/testapp/c_cpp_files/main.cpp b/testapp/c_cpp_files/main.cpp
new file mode 100755
index 0000000..ffd110e
--- /dev/null
+++ b/testapp/c_cpp_files/main.cpp
@@ -0,0 +1,30 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+extern int add(int, int);
+
+template <class T>
+
+void check(T expect, T result)
+{
+ if (expect == result)
+ {
+ //printf("Correct:\n Expected %d got %d \n",expect,result);
+ }
+ else
+ {
+ printf("\nIncorrect:\n Expected %d got %d \n",expect,result);
+ exit (1);
+ }
+}
+
+int main(void)
+{
+ int result;
+ result = add(0,0);
+ check(0, result);
+ result = add(2,3);
+ check(5,result);
+ printf("All Correct\n");
+ return 0;
+}
diff --git a/testapp/c_cpp_files/main2.c b/testapp/c_cpp_files/main2.c
new file mode 100755
index 0000000..3d28ff6
--- /dev/null
+++ b/testapp/c_cpp_files/main2.c
@@ -0,0 +1,28 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+extern int add(int, int, int);
+
+template <class T>
+void check(T expect,T result)
+{
+ if (expect == result)
+ {
+ printf("Correct:\n Expected %d got %d \n",expect,result);
+ }
+ else
+ {
+ printf("Incorrect:\n Expected %d got %d \n",expect,result);
+ exit (0);
+ }
+}
+
+int main(void)
+{
+ int result;
+ result = add(0,0,0);
+ check(0, result);
+ result = add(2,3,3);
+ check(8,result);
+ printf("All Correct\n");
+}
diff --git a/testapp/c_cpp_files/main_array_sum.cpp b/testapp/c_cpp_files/main_array_sum.cpp
new file mode 100755
index 0000000..72eee46
--- /dev/null
+++ b/testapp/c_cpp_files/main_array_sum.cpp
@@ -0,0 +1,32 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+extern int array_sum(int []);
+
+template <class T>
+
+void check(T expect,T result)
+{
+ if (expect == result)
+ {
+ //printf("Correct:\n Expected %d got %d \n",expect,result);
+ }
+ else
+ {
+ printf("\nIncorrect:\n Expected %d got %d \n",expect,result);
+ exit (1);
+ }
+}
+
+int main(void)
+{
+ int result;
+ int a[55555] = {1,2,3,0,0};
+ result = array_sum(a);
+ check(6, result);
+ int b[] = {1,2,3,4,5};
+ result = array_sum(b);
+ check(15,result);
+ printf("All Correct\n");
+ return 0;
+}
diff --git a/testapp/c_cpp_files/main_fact.cpp b/testapp/c_cpp_files/main_fact.cpp
new file mode 100755
index 0000000..ff65456
--- /dev/null
+++ b/testapp/c_cpp_files/main_fact.cpp
@@ -0,0 +1,30 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+extern int factorial(int);
+
+template <class T>
+
+void check(T expect, T result)
+{
+ if (expect == result)
+ {
+ //printf("Correct:\n Expected %d got %d \n",expect,result);
+ }
+ else
+ {
+ printf("\nIncorrect:\n Expected %d got %d \n",expect,result);
+ exit (1);
+ }
+}
+
+int main(void)
+{
+ int result;
+ result = factorial(0);
+ check(1, result);
+ result = factorial(3);
+ check(6, result);
+ printf("All Correct\n");
+ return 0;
+}
diff --git a/testapp/c_cpp_files/main_greatest.cpp b/testapp/c_cpp_files/main_greatest.cpp
new file mode 100755
index 0000000..fe9ff5b
--- /dev/null
+++ b/testapp/c_cpp_files/main_greatest.cpp
@@ -0,0 +1,32 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+extern int greatest(int, int, int);
+
+template <class T>
+
+void check(T expect, T result)
+{
+ if (expect == result)
+ {
+ //printf("Correct:\n Expected %d got %d \n",expect,result);
+ }
+ else
+ {
+ printf("\nIncorrect:\n Expected %d got %d \n",expect,result);
+ exit (1);
+ }
+}
+
+int main(void)
+{
+ int result;
+ result = greatest(1, 2, 3);
+ check(3, result);
+ result = greatest(5, 9, 2);
+ check(9, result);
+ result = greatest(7, 2, 4);
+ check(7, result);
+ printf("All Correct\n");
+ return 0;
+}
diff --git a/testapp/c_cpp_files/main_hello_name.c b/testapp/c_cpp_files/main_hello_name.c
new file mode 100755
index 0000000..71b83a2
--- /dev/null
+++ b/testapp/c_cpp_files/main_hello_name.c
@@ -0,0 +1,29 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+
+void check(char expect[], char result[])
+{
+ if (expect == result)
+ {
+ printf("Correct:expected %s got %s \n",expect,result);
+ }
+ else
+ {
+ printf("ERROR:expected %s got %s \n",expect,result);
+ exit (0);
+ }
+}
+
+int main(void)
+{
+ char result[20];
+ char A[20]=" pratham";
+ char B[20]=" sir";
+ result[20] = message(A);
+ printf("%s",result);
+ check("hello pratham", result);
+ result[20] = message(B);
+ check("hello sir",result);
+ printf("All Correct\n");
+}
diff --git a/testapp/c_cpp_files/main_palindrome.cpp b/testapp/c_cpp_files/main_palindrome.cpp
new file mode 100755
index 0000000..a5d67b5
--- /dev/null
+++ b/testapp/c_cpp_files/main_palindrome.cpp
@@ -0,0 +1,30 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+extern bool palindrome(int);
+
+template <class T>
+
+void check(T expect, T result)
+{
+ if (expect == result)
+ {
+ //printf("Correct:\n Expected %d got %d \n",expect,result);
+ }
+ else
+ {
+ printf("\nIncorrect:\n Expected %d got %d \n",expect,result);
+ exit (1);
+ }
+}
+
+int main(void)
+{
+ bool result;
+ result = palindrome(123);
+ check(false, result);
+ result = palindrome(121);
+ check(true, result);
+ printf("All Correct\n");
+ return 0;
+}
diff --git a/testapp/c_cpp_files/palindrome.c b/testapp/c_cpp_files/palindrome.c
new file mode 100644
index 0000000..236d963
--- /dev/null
+++ b/testapp/c_cpp_files/palindrome.c
@@ -0,0 +1,20 @@
+#include <stdbooll.h>
+bool palindrome(int a)
+{
+ int n1, rev = 0, rem;
+ n1 = a;
+ while (a > 0)
+ {
+ rem = a % 10;
+ rev = rev * 10 + rem;
+ a = a / 10;
+ }
+ if (n1 == rev)
+ {
+ return true;
+ }
+ else
+ {
+ return false;
+ }
+}
diff --git a/testapp/c_cpp_files/palindrome.cpp b/testapp/c_cpp_files/palindrome.cpp
new file mode 100644
index 0000000..aae5dd1
--- /dev/null
+++ b/testapp/c_cpp_files/palindrome.cpp
@@ -0,0 +1,19 @@
+bool palindrome(int n)
+{
+ int n1, rev = 0, rem;
+ n1 = n;
+ while (n > 0)
+ {
+ rem = n % 10;
+ rev = rev * 10 + rem;
+ n = n / 10;
+ }
+ if (n1 == rev)
+ {
+ return true;
+ }
+ else
+ {
+ return false;
+ }
+}
diff --git a/testapp/c_cpp_files/sample.c b/testapp/c_cpp_files/sample.c
new file mode 100755
index 0000000..660f862
--- /dev/null
+++ b/testapp/c_cpp_files/sample.c
@@ -0,0 +1,20 @@
+#include<stdio.h>
+
+void main(int argc , char * argv[])
+{
+ int i,sum=0;
+
+/* if(argc!=3)
+ {
+ printf("you have forgot to type numbers.");
+ exit(1);
+ }
+*/
+ printf("The sum is : ");
+
+ for(i=1;i<argc;i++)
+ sum = sum + atoi(argv[i]);
+
+ printf("%d",sum);
+
+}
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 <iostream>
+#include<cstdlib>
+int main(int argc, char* argv[])
+{
+ std::cout << atoi(argv[1])+atoi(argv[2]) << std::endl;
+ return 0;
+}