Hello to All.
I have this array of strings: char str[90] = {" comp " Hello World
" "};
And i whant to split in two arrays from the original: ( { <-----
str1 ------- "<---str2 -------->" }
str1[10] = {comp}
str2[80] = {Hello World}
sorry for my english
I have this array of strings: char str[90] = {" comp " Hello World
" "};
And i whant to split in two arrays from the original: ( { <-----
str1 ------- "<---str2 -------->" }
str1[10] = {comp}
str2[80] = {Hello World}
sorry for my english
Comment