Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: yogpatel
  • Order by date
  1. yogpatel

    Recursive call

    Hello xwb thanx for reply.
  2. yogpatel

    Recursive call

    Hello, Anybody tell me how this recursive call works and its answer int fun(int *a, int n) { if (n<=0) return 0; else if(*a %2==0) return (*a +fun(a+1,n-1)); else return (*a-fun(a+1,n-1)); } int main() { int a[]={12,7,13,4,11,6}; printf("%d",fun(a,6))...
  3. yogpatel

    Class in C++

    Hello, I got question in interview "Write class for Double Linked List" if u know please reply me.Thanx, Regards, Patel
  4. yogpatel

    java &amp; cmdline

    Hello stefanwagner, what i mean is, I have a dos program that I wish to access through my java program... I can run the program and read the programs output using DataInputStream in = new DataInputStream(new BufferedInputStream process.getInputStream())); But when I try to write to the...
  5. yogpatel

    java &amp; cmdline

    Hello friends, Actually i am working in java project in which i have to dynamically interact with cmdline window i.e. pass data to cmd & fetch from cmd dynamically. so plz give me some hint. Thanx, Regards Patel
  6. yogpatel

    cmdline &amp; java

    Hello, I have problem of fetching cmdline output to textfile & passing parameter to cmdline from textfile in java, give me some hint for how to do it? thanx. regads, Patel
  7. yogpatel

    C compiler for Windows 7

    Hi, I have problem of using Borland Turbo c in windows 7 plz suggest me any c compiler for windows 7.

Part and Inventory Search

Back
Top