Search:

Type: Posts; User: sugumar.tr

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,305

    pointer variable

    here I gave one example for this .
    :insert

    struct student {
    int age;
    char name[25];
    };

    struct student ss;
  2. Thread: tree

    by sugumar.tr
    Replies
    1
    Views
    1,835

    tree

    What is the difference between B tree and b+ tree, and full tree and completed tree?
  3. Thread: float

    by sugumar.tr
    Replies
    2
    Views
    1,837

    float

    How the floating value is stored.?
    Integer value is stored by binary formate. in 4bit Then how the floating value is stored in 8 bit. How its differentiate the fraction and exponent.

    Example:...
  4. Replies
    18
    Views
    11,142

    differents

    a++ is a unary operator a+=1 is a binary operator.

    Example:

    unary: a++ it has only one operant.
    binary: a+b it had two operant "a" and "b".
  5. Thread: getopt()

    by sugumar.tr
    Replies
    1
    Views
    2,493

    getopt()

    How can I use the "--" options in getopt.() function.?

    Normally we gave "-" then character I used in my program -h for usage. I want to use the --h for help page.
Results 1 to 5 of 5