User Profile

Collapse

Profile Sidebar

Collapse
mithuncm
mithuncm
Last Activity: Aug 21 '09, 07:35 AM
Joined: Oct 17 '08
Location: india
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mithuncm
    replied to to Use close(int) from< unistd.h > in QT
    in C
    thanx all,
    had gone through this pblm.
    jus done like this

    ::close(int );

    "::"
    will directs to use the close() in external or included directories,
    else it will look in local directories of QT....
    See more | Go to post

    Leave a comment:


  • mithuncm
    replied to Diff between signed char and char.
    in C
    as said above they depend on the compiler,
    but if char is used the first bit is set 1 or 0 . it will some times be a problen when its first address is refferd to some where, eg
    print it character wise , signed or char will print as
    FFFFFF8c (read in hes because unreadable format)
    else for unsigned char
    it will show the proper 8c only (in Hex)
    signed char wont be any proplem when you are not doing any functions...
    See more | Go to post

    Leave a comment:


  • mithuncm
    replied to merge linked list
    in C
    i had already used 3 linked list 1st for gathering all scattered data read from 500 mB .cap file , 2nd sorted according to IP and port , acknowledgment is checked and sorted to 3 rd one.. ..
    2 & 3 linked list are sorted and done to a single one as 4th linked list..
    according to time of data received but the problem is iteration of the linked list .. the application become slower and slower.
    if i can merge it to 2nd or 3 rd...
    See more | Go to post

    Leave a comment:


  • mithuncm
    started a topic to Use close(int) from< unistd.h > in QT
    in C

    to Use close(int) from< unistd.h > in QT

    hai all,
    i had read a file using ----

    {
    int i =open (char* ,O_RDONLY );
    .
    .
    close(i);
    }

    every thing works fine in QT except 'close(int)' it says That widget class dont have a function int close(int);
    it have only bool close () ,
    but i need to do the close(int) itself which is from <unistd.h>
    i hve tried using namespace unistd; but didint work ...
    See more | Go to post

  • mithuncm
    started a topic merge linked list
    in C

    merge linked list

    hai all,
    any one, can you say how to merge two different linked list. I have 2 linked list where datas, & of corresponding time that datas send. I have to sort out datas according to time, to a single linked list. Do you have any idea?
    See more | Go to post
No activity results to display
Show More
Working...