summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_string/scilabcode/strncpytest.sci
blob: 14eceb834f53e2f5cdef2ea2bbf0b7f7b04a783a (plain)
1
2
3
4
5
6
function strncpytest()
    ss="Ankit Raj";
    nn=5;
    resu=strncpy(ss,nn);
    disp(resu);
endfunction