c++

when i compose my message i can't contents source code!!! How can i do it right?
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.
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
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
yes!!!! it's OK.... Thank you very much
Topic archived. No new replies allowed.