Search:

Type: Posts; User: splitfunc0

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    5,170

    Ok. So i guess i should remove the trailing...

    Ok. So i guess i should remove the trailing newline in the next printf statement. I'm only guessing, please can you point out how to go about that. I am new using C and i am currently learning.
    ...
  2. Replies
    3
    Views
    5,170

    I need some help on this program.

    The aim of this program is to learn more about the ctype.h library.
    The program should give the user five attempts to enter lower case letters. It then checks the letter entered. if it is lower it...
  3. Replies
    9
    Views
    6,654

    I guess you should break out of the loop as soon...

    I guess you should break out of the loop as soon as it finds the repeated number


    if(array[i] == array[j])
    {
    printf("Found repeated number %d\n\n", array[i]);
    break;
    }
  4. I can not find within your program the lines...

    I can not find within your program the lines where you prompt the user for an input. If i am wrong please put the out to me. Thanks
  5. Also try to leave meaningful comments in your...

    Also try to leave meaningful comments in your code. This goes a long way in helping those that will read your code understand your thought trend or program flow.
  6. Replies
    6
    Views
    5,736

    Again try to make use of meaningful names for...

    Again try to make use of meaningful names for your variables. It goes a long way in helping you debug your code.
  7. Replies
    7
    Views
    8,378

    Thanks got the explanation. Is there a link...

    Thanks got the explanation. Is there a link online to the manual pages for all functions in the ctype library.
  8. Replies
    7
    Views
    8,378

    It prints out the message found space. While...

    It prints out the message found space. While practicing this morning i read in a book about some of the function in ctype and i worked with isspace only to find you talking about it.
    I did not get...
  9. Replies
    7
    Views
    8,378

    Does this match white space and newline at the...

    Does this match white space and newline at the same time. I am trying to understand what you meant by the quoted statement. Your explanation will be of help. Thanks



    int main(void)
    {
    char...
  10. From your explanation it seems clear you know the...

    From your explanation it seems clear you know the task at hand. What is holding you back? Need to see a sample or you need someone to code it outright for you?
  11. Replies
    4
    Views
    6,977

    Noted. Thanks.

    Noted. Thanks.
  12. Replies
    4
    Views
    6,977

    Also, do not forget to place comments in your...

    Also, do not forget to place comments in your code.
  13. Replies
    2
    Views
    14,489

    Thanks.

    Thanks.
  14. Replies
    2
    Views
    14,489

    C Source Code review

    Hello, I have being learning C programming for a while now. I want to improve on my coding skills and have being told that one way to achieve this is by reviewing codes written by others. I have...
  15. Take your time to learn the basics. Try...

    Take your time to learn the basics. Try commenting your programs no mater how small the program may be.
  16. Replies
    3
    Views
    6,239

    I find your explanation straight to the point and...

    I find your explanation straight to the point and very enlightening. Thank you.
  17. Replies
    8
    Views
    3,480

    The code is clear and easy to read.

    The code is clear and easy to read.
  18. I'm please you got it right eventually.

    I'm please you got it right eventually.
  19. From your explanation i think you only have a...

    From your explanation i think you only have a scanty idea of what it is you want to achieve. Try to carry out some more research on what it is you want to achieve before you write your first line of...
  20. Jack I find your explanation very enlightening....

    Jack I find your explanation very enlightening. Keep up the good work. Guys like you make this much easier for those of us who are new to c. Thanks for your explanation i learnt something new today.
  21. Replies
    17
    Views
    20,110

    If you are searching for a ready made option to...

    If you are searching for a ready made option to learning c you may never find one. The best way to begin is to settle down in front of your computer and put your hands to work. Get a book that you...
  22. Thread: New Girl

    by splitfunc0
    Replies
    8
    Views
    13,074

    A very warm welcome to you. In here you will get...

    A very warm welcome to you. In here you will get to surround yourself with folks that know what they are doing and are ready to share knowledge with new programmers. when you are stock feel free to...
  23. Yea I find all these interesting means of...

    Yea I find all these interesting means of learning to improve my programming skills. challenges obviously help expand my mindset and thinking capacity. I once read about readying other peoples code...
  24. Replies
    5
    Views
    4,750

    IF the user did input some value into the...

    IF the user did input some value into the variable then the if expression becomes false and in this case the else portion of the code is printed.
    In essence if the variable has a value, the not...
  25. Replies
    18
    Views
    15,224

    Hello laserlight...

    Hello laserlight, I find your explanation very clear. I Think i have learn't something new, although i have read about it before the explanations given thing was not as clear as you have treated it...
Results 1 to 25 of 36
Page 1 of 2 1 2