User Profile

Collapse

Profile Sidebar

Collapse
piu15
piu15
Last Activity: Oct 19 '15, 04:03 PM
Joined: Oct 18 '15
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • piu15
    replied to type mismatch
    in C
    THANKS......... ...
    It worked out!!!!!!!!!!! :) #thnkusomuch #onceagain :)
    See more | Go to post

    Leave a comment:


  • piu15
    started a topic type mismatch
    in C

    type mismatch

    line 15:type mismatch in redclaration of 'merge'

    #include<stdio. h>
    #include<conio. h>
    void mergeSort(int x[],int lb,int ub)
    {
    int m;
    if(lb<ub)
    {
    m=(lb+ub)/2;
    mergesort(x,lb, m);
    mergesort(x,m+1 ,ub);
    merge(x,lb,m,ub );
    }
    }
    void merge(int x[],int lb,int m,int ub)
    {
    int temp[20],i,j,k;
    ...
    See more | Go to post
No activity results to display
Show More
Working...