summaryrefslogtreecommitdiff
path: root/yaksh
diff options
context:
space:
mode:
authoradityacp2016-06-20 14:49:37 +0530
committeradityacp2016-07-28 15:56:05 +0530
commitcd0da16c708e9c80940f4d531b09b67358bda755 (patch)
tree0a2b3e7471f8d56c247e58a27660b350f4ce8bf9 /yaksh
parentcab43aaf4cfe35602537574bf61a5046b3be0af7 (diff)
downloadonline_test-cd0da16c708e9c80940f4d531b09b67358bda755.tar.gz
online_test-cd0da16c708e9c80940f4d531b09b67358bda755.tar.bz2
online_test-cd0da16c708e9c80940f4d531b09b67358bda755.zip
cpp file based script
Diffstat (limited to 'yaksh')
-rw-r--r--yaksh/c_cpp_files/file_data.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/yaksh/c_cpp_files/file_data.c b/yaksh/c_cpp_files/file_data.c
new file mode 100644
index 0000000..1c0ab12
--- /dev/null
+++ b/yaksh/c_cpp_files/file_data.c
@@ -0,0 +1,25 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+extern int ans();
+
+template <class T>
+void check(T expect,T result)
+{
+ if (expect == result)
+ {
+ printf("\nCorrect:\n Expected %d got %d \n",expect,result);
+ }
+ else
+ {
+ printf("\nIncorrect:\n Expected %d got %d \n",expect,result);
+ exit (0);
+ }
+}
+
+int main(void)
+{
+ int result;
+ result = ans();
+ check(50, result);
+}