Search:

Type: Posts; User: hykyit

Search: Search took 0.01 seconds.

  1. Hey thanks for the quick reply~!! The last line...

    Hey thanks for the quick reply~!! The last line was printed out weirdly because it can have either 4 or 5 values...So i think I'll come up with another way to do that..But i think the 4th line is...
  2. Problem with seperating strings with delimiters..

    Hey there~ Im having some problem with file reading and writing...Im suppose to read an external file which have comma seperated values..So I'm suppose to seperate each part (and store it as Name,...
  3. Ooohhhh~ So thats what Salem meant~ Sorry bout...

    Ooohhhh~ So thats what Salem meant~ Sorry bout that~ Anyways i managed to work things out and im close to completing the whole function~ If i still have any problems i might bring it up again~ Thanks...
  4. >ILoveVectors LOL~ Yeah~ Using link list is a...

    >ILoveVectors
    LOL~ Yeah~ Using link list is a requirement and i have to use linked list of link list too T_T..And you got the output that i wanted too! I just thought i should start slowly first...
  5. Hmm...I dont really get it...Sorry bout that~...

    Hmm...I dont really get it...Sorry bout that~ Does that mean i should post the source code for my whole program? Then i think i'll post it~ And i think i'll also provide a link so that you can DL the...
  6. Left justification using linked list of link list

    Hey there~ I need to write a program to left justify text stored in the link list. Here's part of my program:-

    Structure:-


    typedef struct charStruct
    {
    char alphabet;
    struct...
  7. Replies
    2
    Views
    22,169

    -.- And it took me so long to find out the...

    -.- And it took me so long to find out the problem...Thanks a lot for the help! It works just fine now!!
  8. Replies
    2
    Views
    22,169

    Breaking strings without using strtok()

    Hey there~ Im looking for a way to break a string into substrings without the use of strtok()...I wrote my own function but i think there are some bugs in it but i just cant seem to find out the...
  9. Replies
    5
    Views
    1,995

    Thanks a lot for the help...It works fine now~!!...

    Thanks a lot for the help...It works fine now~!! I'll keep in mind not to use gets() anymore and stick with fgets() and sscanf()~!! Thanks again~!!
  10. Replies
    5
    Views
    1,995

    Some help with switch case bug...

    Hey there...I discovered some bugs with my program and hope that you all will help me out with it...Its a very simple program actually but there's a little problem.....

    First of all, this is the...
  11. Thread: fscanf() help!!

    by hykyit
    Replies
    4
    Views
    1,791

    Thanks a lot for helping me out Salem and Dave~!!...

    Thanks a lot for helping me out Salem and Dave~!! It works perfectly now~!! Dont know what i will do without both your help~!! ^^
  12. Thread: fscanf() help!!

    by hykyit
    Replies
    4
    Views
    1,791

    Thanks for the reply!! So im supposed to replace...

    Thanks for the reply!! So im supposed to replace all "%s" with "%[^:]" to avoid skipping the white spaces...But i dont know how to replace it...Below is how i replace all the "%s"..But it doesnt seem...
  13. Thread: fscanf() help!!

    by hykyit
    Replies
    4
    Views
    1,791

    fscanf() help!!

    Hey there~ Im kind of new in C programming and i need help on reading files from a text file using fscanf()..The data from the text file is seperated by ":"..Here's the code:



    #include...
  14. Replies
    2
    Views
    1,698

    I see!!! Thanks a lot for helping me out!! Really...

    I see!!! Thanks a lot for helping me out!! Really appreciate it!! Had no one to turn to with my C programming...Again, thank you very much!! ^^
  15. Replies
    2
    Views
    1,698

    Can someone solve this problem for me?

    Im trying to break a string into arrays of pairs... But the thing is an error will occur when this code is executed.



    void letterPair(char str[])
    {
    int i;
    int j;
    int total = 0;
    ...
Results 1 to 15 of 15