Feb 27, 2016 at 4:07pm UTC
when i compose my message i can't contents source code!!! How can i do it right?
Feb 27, 2016 at 4:17pm UTC
Cut/paste your source code into the edit window. Now highlight the code in the edit window and click the <> button to the right of the window. That will add code tags.
Feb 27, 2016 at 8:32pm UTC
when i click the <> button "
next i inserted my code
int*parr3=new int[size2];
for(int i=0;i<size;i++)
parr3[i]=parr1[i];
for(int i=0;i<size2;i++)
parr3[size1+i]=parr2[i];
cout<<"new array "<<" "<<parr3[i];
nothing happens
Last edited on Feb 27, 2016 at 8:36pm UTC
Feb 27, 2016 at 8:35pm UTC
It must look like this:
[code]int a = 0;
for(a = 0; a < 10; ++a)
;[/code]
This will be the result:
1 2 3
int a = 0;
for (a = 0; a < 10; ++a)
;
Last edited on Feb 27, 2016 at 8:36pm UTC
Feb 27, 2016 at 8:50pm UTC
yes!!!! it's OK.... Thank you very much