Search:

Type: Posts; User: rajkumarmadhani

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    970

    yes replace char with unsigned char to enter the...

    yes replace char with unsigned char to enter the value beyond 127
  2. Do you want to count no of ones or faster method...

    Do you want to count no of ones or faster method to count bits?
  3. Replies
    0
    Views
    1,397

    New to SOAP Request

    Hi,

    In my code i am sending requests to server using HTTP / HTTPS protocol. What is SOAP request for can any body please give some inputs on this,and how to use(documents) ...

    thanks
  4. Replies
    4
    Views
    1,340

    Yes that's i got the same too from below output...

    Yes that's i got the same too from below output after running the code,
    a1:### ��###
    b1:### ��###
    c1:### ��###

    But is there any...
  5. Replies
    4
    Views
    1,340

    struct X { char a[10]; char b[10];...

    struct X
    {
    char a[10];
    char b[10];
    };

    struct X x;
    memset(&x,0x20,sizeof(struct X));
  6. Replies
    4
    Views
    1,340

    Initialising the structure

    struct X
    {
    char a[10];
    char b[10];
    };

    struct X x;
    memset(&x,0x20,sizeof(x));
  7. Replies
    2
    Views
    921

    Read data line by line and parse it based field...

    Read data line by line and parse it based field values.
  8. Replies
    12
    Views
    1,672

    See Application image is .ELF format

    See Application image is .ELF format
  9. Replies
    12
    Views
    1,672

    Basically i have one application image running on...

    Basically i have one application image running on hand held device. I want to update the device with the new/modified application image which is from remote server to my hand held device through...
  10. Replies
    12
    Views
    1,672

    Here Delta encoding is just form of differences...

    Here Delta encoding is just form of differences between sequential data,But how the compression works, Can you please elaborate it please...
  11. Replies
    12
    Views
    1,672

    Need data compression algo

    Hi,Basically i want to compress the data before transmission thru gprs, so that i can reduce the time in transmission, can any body suggest me lossless data compression algorithm.
  12. Replies
    19
    Views
    3,139

    thank you for reply

    thank you for reply
  13. Replies
    19
    Views
    3,139

    static global

    hi iam having small doubt.

    what is the difference between static and static global variable.

    could some body clarify.
  14. Replies
    5
    Views
    999

    thank you

    thank you
  15. Replies
    5
    Views
    999

    new to datastructures

    hi,

    iam new to data structures.can anybody please tell me links where to start.

    thanks in adnvance.
  16. Replies
    16
    Views
    9,007

    Is it possible to emulate 16 bit compiler or 32...

    Is it possible to emulate 16 bit compiler or 32 bit compiler in linux environment by using gcc ?
  17. Replies
    16
    Views
    9,007

    here what i mean is, will 'c' give same value on...

    here what i mean is, will 'c' give same value on 32/16 bit compiler ? or there makes any difference.
  18. Replies
    5
    Views
    20,132

    using calloc() you can initialize it int ...

    using calloc() you can initialize it


    int *a;
    a = calloc(50,sizeof(int));


    can fulfill.
  19. Replies
    16
    Views
    9,007

    16 bit compilar or 32 bit compilar

    hi,

    i have a doubt on compilation on 16 bit/32 bit.


    main()
    {
    unsigned int a=30;
    int b=5;
    c=a+b;
  20. Replies
    6
    Views
    1,344

    yeah the same thing iam looking for. thank you...

    yeah the same thing iam looking for. thank you for link.
  21. Replies
    6
    Views
    1,344

    i written a small code struct REGS...

    i written a small code



    struct REGS inregs, outregs;
    int86(18,&inregs,&outregs);
    memory=outregs.x.ax;
    printf("memory:%d',memory);
  22. Replies
    6
    Views
    1,344

    How to access processor regosters

    Hi,

    i want to access processor registeres using c.but i donot know processor information(how many registres and all).

    could you please tell me how to access processor info
  23. Replies
    9
    Views
    1,416

    thank you for info.i was getting doubt on it. now...

    thank you for info.i was getting doubt on it. now iam able to understand.
  24. Replies
    9
    Views
    1,416

    initializing of strucutre variable

    hi,

    why cant we initialise structure variables at the time structure declaration.


    struct
    {
    int i=10;
    char a='s';
    };
  25. Replies
    3
    Views
    2,708

    thank you for reply. from this i got something on...

    thank you for reply. from this i got something on structure padding and packing
Results 1 to 25 of 35
Page 1 of 2 1 2