summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_string/scilabcode/strncpytest.sci
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit_tests/test_string/scilabcode/strncpytest.sci')
-rw-r--r--tests/unit_tests/test_string/scilabcode/strncpytest.sci6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit_tests/test_string/scilabcode/strncpytest.sci b/tests/unit_tests/test_string/scilabcode/strncpytest.sci
new file mode 100644
index 0000000..14eceb8
--- /dev/null
+++ b/tests/unit_tests/test_string/scilabcode/strncpytest.sci
@@ -0,0 +1,6 @@
+function strncpytest()
+ ss="Ankit Raj";
+ nn=5;
+ resu=strncpy(ss,nn);
+ disp(resu);
+endfunction