Search:

Type: Posts; User: chandan1008; Keyword(s):

Search: Search took 0.00 seconds.

  1. Unix/Linux Re: Share your knowledge about UNIX permission

    chown and chgrp are two more of that kind.
  2. Answers
    7
    Views
    5,507

    Unix/Linux Re: System Calls

    You could checkout this site. linux.about.com thats a good one.
    http://linux.about.com/library/cmd/blcmdl2_syscalls.htm
    Cheers,
    -Chandan.
  3. Re: Fastest algorithm to find the number of bits set in a number?

    for(count=0;number;count++)
    number&=(number-1);

    can anyone write a better logic for this?
  4. Fastest algorithm to find the number of bits set in a number?

    Hi, what is the fastest algorithm to find the number of bits set in a number?
  5. Answers
    2
    Views
    3,399

    Re: Setting desired bit in a 32 bit number

    guess you can use these macros.
    #define SETBIT(bitnumber,number) (number)|(1<<(bitnumber-1))
    #define RESETBIT(bitnumber,number) (number)&(~(1<<(bitnumber-1)))
    Hopefully this helps.
  6. Answers
    2
    Views
    3,399

    Re: Setting desired bit in a 32 bit number

    guess you can use this macro.
    #define SETBIT(bitnumber,number) (number)|(1<<(bitnumber-1))
  7. Answers
    13
    Views
    62,369

    Re: void pointer in C Programming Language

    A void pointer is a pointer which can point to any data type (which of course requires typecasting). Where as a null pointer is used to indicate that it is pointing nowhere.

    A null pointer is a...
  8. Answers
    2
    Views
    4,527

    Re: what is smart piointer?

    Smart pointers are objects which store pointers to dynamically allocated (heap) objects. They behave much like built-in C++ pointers except that they automatically delete the object pointed to at the...
  9. Answers
    7
    Views
    35,460

    Unix/Linux Re: Options in ps command in UNIX

    ps stands for "process status"
    The ps Command is used to display the currently running processes on Unix/Linux systems. If you know the 'Task-Manager" which pops up under Windows NT/2000/XP when...
Results 1 to 9 of 9
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact