Search:

Type: Posts; User: sed_y

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    3,007

    thanks

    thanks
  2. Replies
    4
    Views
    3,007

    hi mir, so would u suggest any web source or...

    hi mir,
    so would u suggest any web source or book?

    sedy
  3. Replies
    4
    Views
    3,007

    FSM(Finite state machine) help

    hi,
    I have not used FSM before and need to learn it asap. there are many tutorials which give concepts or give vhdl code. can anyone suggest
    me 2,3 examples/links which not only explain theory but...
  4. Replies
    27
    Views
    7,463

    ok, all right. thanks

    ok,
    all right.
    thanks
  5. Replies
    27
    Views
    7,463

    can't i use something like below #include...

    can't i use something like below


    #include <stdio.h>

    int main()
    {
    unsigned char ch[3] = "AB"; //0x410x42
    unsigned char *pch= ch;
    printf (" *pch or ch[0]= %x and *(pch+1) or...
  6. Replies
    27
    Views
    7,463

    hi, I did verify this bitwise. however, i we...

    hi, I did verify this bitwise. however, i we compute *p where p points to A, value still comes as 0x41. so, is it that internally storage is 10000010 or 0x82 but compiler automatically understands...
  7. Replies
    27
    Views
    7,463

    you are right. I knew this and explained it in...

    you are right. I knew this and explained it in stupid manner. of course, 0x0100 when shifted 7 bits wld give 0x8000 which if stored as lill endian cld be 0x0080(left to right add) or 0x8000(right to...
  8. Replies
    27
    Views
    7,463

    the reason I am doing is to confirm that memory...

    the reason I am doing is to confirm that memory stores 0x0100 as lill endian 0x0001. when shifted 7 bits, char pointer *p gives 0x0 and *(p+1) as 0x80. if lill endian was stored as 0x0100 with LSB to...
  9. Replies
    27
    Views
    7,463

    thanks for this. i will extract each bit and...

    thanks for this. i will extract each bit and conform this.
  10. Replies
    27
    Views
    7,463

    little endian query

    hi,
    I wrote a code to check the endianess of my PC. this is a core I-5, so 8086 based
    processor, should be little endian.I am using Visual Studio 2010.

    The data i have is 0x0100 or 256d. in...
  11. Thread: l-value query

    by sed_y
    Replies
    2
    Views
    946

    thanks sedy

    thanks

    sedy
  12. Replies
    11
    Views
    1,482

    hi all, It was a C++ code. but i thought, C...

    hi all,
    It was a C++ code. but i thought,
    C might have it too. thats why i posted it.

    sedy
  13. Replies
    11
    Views
    1,482

    hi, can you elaborate on that? sedy

    hi,
    can you elaborate on that?
    sedy
  14. Replies
    11
    Views
    1,482

    function return on right hand side of "="

    i recently came across a code which was like


    func1() = 0;

    if the function returns an int, what does this code do. can we have function returning a value and be on the right hand side of "="?...
  15. Thread: l-value query

    by sed_y
    Replies
    2
    Views
    946

    l-value query

    hi,
    I had confusion about the -l value and r-value.
    consider the code


    int x;
    x=5;


    with
  16. Replies
    14
    Views
    9,275

    hi, all right. i understood the operations but...

    hi, all right. i understood the operations but not the idea behind doing so. anyways, i will try to find out.
    thanks
    sedy
  17. Replies
    14
    Views
    9,275

    hi, thanks. but, what is the algorithm doing? ...

    hi,
    thanks.
    but, what is the algorithm doing?

    sedy
  18. Replies
    14
    Views
    9,275

    unsigned long and bit programming

    hi,
    I have following queries on C data types ;

    1) for long (int) and unsigned long (int), if i declare a variable and initialize it, is it necessary to put type at the end of initialized value ,...
  19. Replies
    5
    Views
    3,287

    i think I am getting confused. Here, I am trying...

    i think I am getting confused. Here, I am trying to build just one list with three elements, 10,20 30 which are passed through objects a,b,c. so, when sz is 1, I am adding element to first element...
  20. Replies
    5
    Views
    3,287

    sz is for updating the number of nodes ,not the...

    sz is for updating the number of nodes ,not the number of lists. so if i create node each time, each node or object would share updated size as static. is it not the way it should work?
    and does...
  21. Replies
    5
    Views
    3,287

    link list build: memory access denied

    hi guys. I created a simple code to build linked list.
    following are the various files

    Header file


    class ListBuild
    {
    private:
    struct node {
  22. Replies
    4
    Views
    1,287

    well, somebody asked me this, so i was not sure...

    well, somebody asked me this, so i was not sure is that the way to do or not.
  23. Replies
    4
    Views
    1,287

    ok, so you mean, I can add ,say a while loop in...

    ok, so you mean, I can add ,say a while loop in the user file which does not test for the size but whether the user wants to add new nodes, i should be ok?

    sedy
  24. Replies
    4
    Views
    1,287

    linked list creation

    hi,
    i want to create a link list , which i can by adding the elements at the end,
    if size is known.
    however, suppose i do not know the size of the list. say, the user can keep on adding the...
  25. Replies
    14
    Views
    4,228

    thanks all

    thanks all
Results 1 to 25 of 47
Page 1 of 2 1 2