Search:

Type: Posts; User: Siaw Ys

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: Beep sound

    by Siaw Ys
    Replies
    1
    Views
    10,969

    Well, the problem has solved. So, board closed.

    Well, the problem has solved. So, board closed.
  2. Thread: Beep sound

    by Siaw Ys
    Replies
    1
    Views
    10,969

    Beep sound

    Well, I was creating a program to play a music but I can't get my last "yeah" tune works goodly so I wonder if anyone mind give me an idea how to play the last tune perfectly? Very thanks you.

    ...
  3. Replies
    4
    Views
    1,046

    Understand. Thanks.

    Understand. Thanks.
  4. Replies
    4
    Views
    1,046

    Is this mean that I can't reverse an octal number?

    Is this mean that I can't reverse an octal number?
  5. Replies
    4
    Views
    1,046

    Reverse integer.

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

    void printReverse(int num);

    int main(void)
    {
    int num = 0123456;
  6. Replies
    17
    Views
    19,898

    Noop...I don't have any text books but only notes...

    Noop...I don't have any text books but only notes and slides. I also don't have time to ask my teacher for help in school because I was also busy. Off course ~ I have search online for many guides...
  7. Replies
    17
    Views
    19,898

    I understand what you mean. All the problem which...

    I understand what you mean. All the problem which I post is the problem which I has try to figure by my own but I still can't solve so I need help. I also try to just rely by myself solve it by...
  8. Replies
    17
    Views
    19,898

    #include #include #include...

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

    void encrypt();
    void decrypt(char data[100], int pass, int length, int key, int i);

    int main(char data[100], int pass,...
  9. Replies
    17
    Views
    19,898

    Please view my code below. #include...

    Please view my code below.


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

    void encrypt();
    void decrypt(char data[], int pass, int length);
  10. Replies
    17
    Views
    19,898

    I have solve this problems ~ ^^

    I have solve this problems ~ ^^
  11. Replies
    17
    Views
    19,898

    Ok, I have updated my code so that the key store...

    Ok, I have updated my code so that the key store into another variable...


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

    int main(void)
    {
    char data[100];
  12. Replies
    17
    Views
    19,898

    Well, I know that I should use while loop but how...

    Well, I know that I should use while loop but how can my program determine that the key which input by the user is incorrect?
  13. Replies
    17
    Views
    19,898

    Ok...now i have updated my code... #include...

    Ok...now i have updated my code...


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

    int main(void)
    {
    char data[100];
  14. Replies
    17
    Views
    19,898

    XOR Encryption & Decrypt.

    Please view my code below...


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

    int main(void)
    {
    char data[100];
  15. Replies
    7
    Views
    1,951

    Now I get it ~ If I change into *result = n ^ 1 ;...

    Now I get it ~ If I change into *result = n ^ 1 ; It works....But I still don't know how those operators works. So I need some explanation...
  16. Replies
    7
    Views
    1,951

    Ok...I try change into the following code ...

    Ok...I try change into the following code



    void ReduceOddNumber(int n, int *result)
    {
    *result = n << 1 ;
    }

    When I input 5 it become 10 I wonder why?
  17. Replies
    7
    Views
    1,951

    Did you mind show me how to done that? Because I...

    Did you mind show me how to done that? Because I really have no idea how...I am totally new at this chapter.
  18. Replies
    7
    Views
    1,951

    Bitwise operators help ~

    First please view my code below.


    #include <stdio.h>
    #include <conio.h>

    void ReduceOddNumber(int n, int *result);

    int main(void)
    {
  19. Replies
    4
    Views
    3,993

    Thanks you !!! I finally realize it ~

    Thanks you !!! I finally realize it ~
  20. Replies
    4
    Views
    3,993

    Ok...then what method should I use to solve this...

    Ok...then what method should I use to solve this problem? Does change my variable into array form is recommend so that it will keep update?
  21. Replies
    4
    Views
    3,993

    Compare string in binary files.

    Please take a look my code below.


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

    struct noun
    {
    char singular[80];
  22. Replies
    3
    Views
    1,373

    Well, I pass them as parameters because my...

    Well, I pass them as parameters because my assignment request the function must accept an input parameters so that why I pass to it. I try explain clearly then, This programs is to convert the...
  23. Replies
    3
    Views
    1,373

    Do not append if found in the binary file?

    First, please view my code below.


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

    struct noun
    {
    char singular[80];
  24. I don't how should I thanks you ^^ . You are...

    I don't how should I thanks you ^^ . You are genius ~ I try to solve this problems for a long time but...still can't and now your plan B works ~ After I remove the & from the fwrite it write...
  25. Ok, my target is to write p->singular and...

    Ok, my target is to write p->singular and p->plural into the binary files but unfortunately no matter how I try, all the info which this program write into the binary files is some other info which...
Results 1 to 25 of 67
Page 1 of 3 1 2 3