Search:

Type: Posts; User: hyaline

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    6,236

    thanks salem u r the man !!!

    thanks salem

    u r the man !!!
  2. Replies
    5
    Views
    6,236

    emmm.......... i want ___$5.00 __$50.00 ...

    emmm..........

    i want

    ___$5.00
    __$50.00

    (___ is space)

    rather than
  3. Replies
    5
    Views
    6,236

    oops

    Oooops



    $50.00
    $5.00

    rather dollar sign assigned together (left alignment)

    i want to have the last digit of the price alligned
  4. Replies
    5
    Views
    6,236

    trouble with printf alignment

    hi !
    can someone help me with the printf alignment
    when i run the code below , compare with price = 5 and price=50

    the alignment is like

    $5.00
    $50.00

    how do i...
  5. Replies
    1
    Views
    762

    a quick question !

    hi~

    just a quick Q

    can i do this in enum ?

    enum days{jan=1-31,feb=1-29.........etc ..}

    where 1-31 correspond to 1,2,3,....31..
  6. Replies
    3
    Views
    1,030

    but it's not really searching the enum ? if i...

    but it's not really searching the enum ?

    if i have 100 elements in enum .....won't it take ages to find the matching one ???
  7. Replies
    3
    Views
    1,030

    searching enum ????!!!!!!!!!!

    hello ~i need help ~~~~~~~~~~~

    can i search enum ?

    if i have smthing like

    enum tag{ banana=12,guitar=23,abubuHat=56}

    is it possible to implement a fn like
  8. Replies
    1
    Views
    2,014

    fgets & storing

    hi all , i just have a problem concerning fgets

    if i use fgets in a linked list structure

    fgets (element->name,MAX,stdin);

    where "name" is an element of struct~


    how can i store the...
  9. Thread: searching ><

    by hyaline
    Replies
    1
    Views
    1,175

    searching >

    typedef struct person{
    char code[20];
    char name[100];
    struct person *next;
    } ListPerson;

    typedef ListPerson *PersonPtr;


    hi , i have a linked list structure like above.
  10. Replies
    8
    Views
    1,346

    huh? what do i use then ? if i dun use gets?

    huh?
    what do i use then ? if i dun use gets?
  11. Replies
    8
    Views
    1,346

    thanks for the help i stored as char what...

    thanks for the help

    i stored as char

    what about
    z 1234 5678 9011

    if i only want "12" ???
  12. Replies
    8
    Views
    1,346

    array !!!!! T_T

    hi , just have a question here

    if i use the function gets , to get an input such as

    z 1234 5678 9011


    how do i access to parts of the input

    ie , i only want the "5678" bit ??
  13. Replies
    2
    Views
    1,320

    Searching a Linked-List

    hi , i need help !!!!!!!

    if i have a linked list structure

    typedef struct person{
    char name[MAX];
    char address[MAX];
    struct person *next;
    } List;
Results 1 to 13 of 13