Search:

Type: Posts; User: rajisankar

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    1,445

    Thanks.

    Thanks.
  2. Replies
    4
    Views
    1,445

    I'm not asking this quesions for time passing..I...

    I'm not asking this quesions for time passing..I studied and worked on this.I'm not able to find answer for it in internet.Afterwards only i posted in this forum.Without knowing answer for this,i...
  3. Replies
    4
    Views
    1,445

    Question about filemodes??!!

    Hi,
    Please see the program below.

    ==============================================
    #include <stdio.h>
    #include <sys/stat.h>
    #include <pwd.h>
    #include <grp.h>
    #include <time.h>
    struct...
  4. Replies
    2
    Views
    1,509

    Thanks

    Thanks
  5. Replies
    2
    Views
    1,509

    Question about ls -l command!!!

    Hi All,
    While doing ls -l in linux prompt , it displays in the format permission no.of-links user owner no.of-bytes date time name
    I have doubt in no.of-links.Actually empty...
  6. Replies
    8
    Views
    1,117

    Question about fork()!!!

    What is the maximum number of concurrent process,
    UNIX allows to create using fork() call??(In 16-bit processor)

    Thanks in advance.

    Regards,
    Rajisankar.
  7. Quzah!! It should be 4107. Because fread will...

    Quzah!! It should be 4107.
    Because fread will read 4096 bytes in 16-bit processor.
    But it returned whatever the size we defined in buff.( here sizeof(buff) is 11 )
    So,In child process,first fread...
  8. Help required in understanding fread call!!

    In the following program,I have doubt in the second printf which is in the child
    process.Actually in file opreations,file descriptor will be shared among parent
    and child process.
    So,We should...
  9. Hi, (uchar)*p means unsigned char pointer.p...

    Hi,

    (uchar)*p means unsigned char pointer.p points to unsigned char.
    But (uchar *) p means?Could you explain me briefly?please.
    thanks.

    Regards,
    Rajisankar.
  10. What is the difference between (uchar) *p and (uchar *)p?

    Hi all,

    Please clarify me the difference between (uchar) *p and (uchar * ) p
    Most of the time i got confused about this.
    Thanks in advance.

    Regards,
    Rajisankar.
  11. Replies
    15
    Views
    3,136

    Hi, Ya..By following CommonTater's comment, it...

    Hi,

    Ya..By following CommonTater's comment, it will work.One correction in your code.
    For representing NULL you should use '\0' instead of simply \0

    Rajisankar
  12. Replies
    18
    Views
    3,791

    RE:Please check my code

    Hi,

    Actually u did some wrong thing in line "e=fscanf(inFile,"%d",id);"
    I changed your code as below.( Highlighted using RED color).Please check it.

    ...
Results 1 to 12 of 12