Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
407 views
in Technique[技术] by (71.8m points)

contactenating two arrays in c using pointers and function

int* concat_tab(int n1,int t1[],int n2, int t2[]){
    int *t3;
    t3 = (int*) malloc((n1+n2)*sizeof(int));
    for (int i = 0; i < n1; i++){
            *(t3+i)=*(t1+i);}
    for (int j = 0; j < n2; j++){
            *(t3+n1+j)=*(t2+j);}
    
    for (int i = 0; i < n1+n2; i++){
        printf("%d",*(t3+i));}
}

I'm trying to use this function two arrays but I get a segmentation fault. Any Help!

question from:https://stackoverflow.com/questions/65904989/contactenating-two-arrays-in-c-using-pointers-and-function

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to reply this article.

OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.7k users

...