one more version...

int a[]={1,-5,6,7,9,9,20,25,31,45};
    int i=0,j=1,n=10;
    int c;
    while(i<j)
    {
          c=a[i]+a[j];
          if(c<26)j++;
          else
           if(c>26)i++;
           else
            printf("%d %d ",a[i++],a[j]);


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/algogeeks
-~----------~----~----~----~------~----~------~--~---

Reply via email to