Search:

Type: Posts; User: rajatkochhar

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,210

    The solution is simple... Since the LL are in...

    The solution is simple...

    Since the LL are in ascending order, you just keep on comparing
    each element of A with elements of B till
    the element of B becomes greater then
    that element...
  2. Replies
    8
    Views
    3,415

    Consider this int arr[4][2]={ ...

    Consider this




    int arr[4][2]={
    {1,2},
    {3,4},
    {5,6},
    {7,8}
  3. Replies
    9
    Views
    2,843

    Sorry sir , if you felt bad I didn't really mean...

    Sorry sir , if you felt bad I didn't really mean that.
  4. Replies
    9
    Views
    2,843

    yes my current working directory is the bin...

    yes my current working directory is the bin folder. Now then......
  5. Replies
    9
    Views
    2,843

    gcc on windows

    hello everybody

    I have installed gcc for windows(gcc-2.95.2-crtdll.exe ).
    i have set the required path and other things.
    The command gcc -v is correctly giving the version and other
    ...
  6. Replies
    12
    Views
    3,214

    Thanx u all for your suggestions. suggest some...

    Thanx u all for your suggestions.
    suggest some new C compiler ...... borland,miracle,lcc win32,Dev-C++
  7. Replies
    6
    Views
    1,309

    Really really silly question

    yes, in a test condition , if we are checking for an AND operation
    if any condition gives false , the compiler won't check for any
    other condition and we will come out of the loop immediately....
  8. Replies
    12
    Views
    3,214

    positioning the cursor(plz help)

    I am using windows XP and turbo c++ 3.0.
    it supports gotoxy().

    but i want to invoke ROM-BIOS function int86.
  9. Replies
    12
    Views
    3,214

    positioning the cursor(plz help)

    Well i m new to hardware programming in C. I tried to position
    the curser at the required position but i m not confident about
    this. The problem seems to be with video pages !!!!



    ...
  10. Replies
    16
    Views
    73,034

    // well, sprintf just sends the formatted output...

    // well, sprintf just sends the formatted output to the string and not to the screen . rest is ok .




    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include<conio.h>
    #define...
  11. host information

    For getting host Ip address , port number,name and other
    parameters one can use functions like:

    1.gethostbyaddr
    2.gethostbyname
    3.getservbyname
    4.getservbyport
    These database...
  12. Replies
    1
    Views
    1,844

    problem with qsort()

    // program to sort numbers using qsort library routine




    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <conio.h>
    #include <search.h>
Results 1 to 12 of 13