Search:

Type: Posts; User: Siaw

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    9
    Views
    1,274

    Ok...now I fully understand how this program...

    Ok...now I fully understand how this program works....but I face another more difficult recursion


    #include <stdio.h>

    int FUNCTION (int n);

    main(void)
    {
    int n...
  2. Replies
    9
    Views
    1,274

    Ya, of course I try to trace this program before...

    Ya, of course I try to trace this program before but I still can't obtain the correct output...Now I understand some but why should I return
    1 + 0 = 1 then going up to 1 + 1 again ?
  3. Replies
    6
    Views
    1,469

    Nested Structure help ~

    First, I should show the question first...

    (i) Using typedef, declare a structure called employee which can hold the following details of an employee.
    ID
    Name
    Position

    (ii) Using the...
  4. Replies
    32
    Views
    4,227

    Ok ~ Thanks everyone. I will keep in mind ^^

    Ok ~ Thanks everyone. I will keep in mind ^^
  5. Replies
    32
    Views
    4,227

    How about if I use the library? After...

    How about if I use the <strsafe.h> library? After I use can I prevent buffer overruns?
  6. Replies
    32
    Views
    4,227

    Did gets stored new line too? Can I change all my...

    Did gets stored new line too? Can I change all my fgets into gets?
  7. Replies
    32
    Views
    4,227

    Very thanks you everyone ~ Below is my code so...

    Very thanks you everyone ~ Below is my code so far...


    #include <stdio.h>
    #include <stdlib.h>

    struct DATE {

    int month;
  8. Replies
    32
    Views
    4,227

    I also hope that I can just call the DATE struc...

    I also hope that I can just call the DATE struc but because of below requirement....
    (v) Write a C program segment that prompts the user to input 10 sets of student records. Store the data entered...
  9. Replies
    32
    Views
    4,227

    My code below... #include ...

    My code below...


    #include <stdio.h>
    #include <stdlib.h>

    struct DATE {

    int month;
  10. Replies
    32
    Views
    4,227

    Can you please get me an example how to start...

    Can you please get me an example how to start reading user input? I know how use use for loop but I don't know how to get start with store input into the IBcourse course.
  11. Replies
    32
    Views
    4,227

    Thanks for you again. But can you teach or give...

    Thanks for you again. But can you teach or give me some hints me how to done the below question by using the following codes please. (Because I am not good in nested structure)

    (v) Write a C...
  12. Replies
    32
    Views
    4,227

    Ok...below is the code. Am I do right for (iv)? ...

    Ok...below is the code. Am I do right for (iv)?


    #include <stdio.h>
    #include <stdlib.h>

    struct DATE {

    int month;
  13. Replies
    32
    Views
    4,227

    Oh,...I understand but how can I do number (iv)?...

    Oh,...I understand but how can I do number (iv)? What does (iv) mean?
  14. Replies
    32
    Views
    4,227

    First, lets view the question... (i) Declare a...

    First, lets view the question...
    (i) Declare a tagged structure called DATE which consists of the following members:
    month (eg. 12)
    day (eg. 5)
    year (eg. 2001)

    (ii) Using typedef, declare...
  15. Replies
    32
    Views
    4,227

    Lol...I never thinks is this problem....very...

    Lol...I never thinks is this problem....very thanks :wink:
  16. Replies
    32
    Views
    4,227

    Hmm...I try to figure it out but I still don't...

    Hmm...I try to figure it out but I still don't know what wrong...so I think I post my codes.


    #include <stdio.h>
    #include <stdlib.h>

    struct DATE {

    int month;
  17. Replies
    32
    Views
    4,227

    Very thanks you. But now its still remains one...

    Very thanks you. But now its still remains one error...

    C:\Documents and Settings\Administrator\Desktop\Q5.c|22|error: two or more data types in declaration specifiers|
    ||=== Build finished: 1...
  18. Replies
    32
    Views
    4,227

    Oh...I understand but now got an error... Error...

    Oh...I understand but now got an error...
    Error below
    _________________________________________________________
    C:\Documents and Settings\Administrator\Desktop\Q5.c|20|error: expected...
  19. Replies
    32
    Views
    4,227

    Nested Structure help ~

    First, lets view the question...
    (i) Declare a tagged structure called DATE which consists of the following members:
    month (eg. 12)
    day (eg. 5)
    year (eg. 2001)
    (ii) Using typedef, declare a...
  20. Replies
    1
    Views
    1,231

    Ok, I try to done this question, and below is my...

    Ok, I try to done this question, and below is my result. Did my coding correct?


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>

    typedef struct Employee {
    char ID[4];
    ...
  21. Replies
    1
    Views
    1,231

    Modify structure array help?

    First...this is the question.
    Modify the program in Q6 to allow a user to edit the employee detail based on the Employee ID field. Display the result before and after edit.
    [Note: You should not...
  22. Replies
    16
    Views
    7,462

    Very thanks for all those help me ^^ I complete...

    Very thanks for all those help me ^^ I complete this program. Very thanks you ~
  23. Replies
    16
    Views
    7,462

    My newest code is here....I could now display...

    My newest code is here....I could now display customer search result but, when the customer input search 2 cd at the same time then input 2 cd names, the result only display 1 cd info. How can I...
  24. Replies
    16
    Views
    7,462

    I have change some of my code... so how can I...

    I have change some of my code... so how can I display all information related to digimon if the users search Digimon?


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>

    typedef...
  25. Replies
    16
    Views
    7,462

    Very thanks you ~ I finally solve the the...

    Very thanks you ~ I finally solve the the searching problem. But now I need to display all the details of the search items after the users has search. I know I has already display it when this...
Results 1 to 25 of 31
Page 1 of 2 1 2