Search:

Type: Posts; User: Newbi2C

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    17,427

    What is the name of your university?

    What is the name of your university?
  2. Replies
    6
    Views
    17,427

    You still want us to do something that you have...

    You still want us to do something that you have been assigned. If you don't understand what you are doing wrong, perhaps you should ask yourself if programming is for you.
  3. Replies
    3
    Views
    10,493

    What is the problem with this assignment?

    What is the problem with this assignment?
  4. Replies
    10
    Views
    5,829

    I cannot really see any difference in the...

    I cannot really see any difference in the implementation between C or any other language for this problem. You are not using anything that is that advanced and what you should to to get this to work...
  5. Replies
    10
    Views
    5,829

    This look a bit to much like something you would...

    This look a bit to much like something you would be given as an assignment in school. If you spend a few minutes to think about it and know how to program C I cannot see that this is that much of a...
  6. Replies
    4
    Views
    36,849

    Problem is that most books you will come across...

    Problem is that most books you will come across are roughly +200 pages of nothing and 50 pages of something useful*. I tried some other books but found that you wasted ~50 pages to be able to get an...
  7. If you understand what the loop does, you will...

    If you understand what the loop does, you will have no problem interpreting the conditional expressions used for the program. What the program does is basically to take characters and place them in c...
  8. Do you understand what happens when you use this...

    Do you understand what happens when you use this code?

    while ((c = getchar()) != EOF)
    {
    ...
    }

    Spend a day or two until you have a real understanding of this and you will be able to finish...
  9. Thread: Sudoku

    by Newbi2C
    Replies
    9
    Views
    4,659

    I don't believe a Sodoku solver would need to be...

    I don't believe a Sodoku solver would need to be as advanced as Adak say, creating a solver for level 1 to level 3 should be pretty straight forward and not that much of a challenge with the basic...
  10. Replies
    3
    Views
    854

    Any error in this function?

    I'm self studying C with Practical C programming (3:rd) - O'Reilly.

    I have the following exercise
    "Exercise 9-2 : Write a function begins(string1,string2) that returns true if string1 begins...
Results 1 to 10 of 10