Search:

Type: Posts; User: jappy512

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    5,481

    Searching ID number

    Hi guys... Good Day!

    I'm having a problem with my code below.



    #include <stdio.h>
    #include <string.h>
    main()
    {
  2. Replies
    11
    Views
    9,572

    I'm sorry for that... :) we are required to use...

    I'm sorry for that... :) we are required to use gotoxy() function to be able to align the names with their corresponding score in like a table form.. as what our teacher said so..

    I'm not familiar...
  3. Replies
    11
    Views
    9,572

    Thanks Adak... here is my code now... about the...

    Thanks Adak... here is my code now... about the problem earlier, i cannot enter the second name.




    #include <stdio.h>
    #include <string.h>
    main()
    {
    int x, y, score[3][3], col=20, lin=4,...
  4. Replies
    11
    Views
    9,572

    Thanks for the reply adak.. Here is the code i...

    Thanks for the reply adak.. Here is the code i made using gotoxy() function.



    #include <stdio.h>
    #include <string.h>
    main()
    {
    int x, y, score[3][3], col=15, lin=4, sum[5];
    char name[5][20];
  5. Replies
    11
    Views
    9,572

    Hmm.. How to make a table using gotoxy function...

    Hmm.. How to make a table using gotoxy function on that? =)
  6. Replies
    11
    Views
    9,572

    Displaying Scores in Table

    Lesson after lesson.. It's me again guys... just finish the second lab exercise.... hmmm... And now our lesson is about multiple arrays... =) I had already this code here:



    #include <stdio.h>...
  7. Replies
    3
    Views
    2,295

    Thanks a lot adak for immediate reply... well i...

    Thanks a lot adak for immediate reply... well i just replace temp with temp[30]... and it works fine now..... I'm still new on this one... hahaha... I've learned a lot... Thank you
  8. Replies
    3
    Views
    2,295

    Bubble Sorting Problem

    Hi Guys its me again... Password program was our first lesson now to our second topic the bubble sort technique... hmmm... I had already the program.



    #include <stdio.h>
    #include <string.h>...
  9. Replies
    8
    Views
    3,188

    Thanks to all the reply guys.... It helped me a...

    Thanks to all the reply guys.... It helped me a lot and now the program runs smoothly because of all your suggestions..

    Thank You Very Much.. ^_^
  10. Replies
    8
    Views
    3,188

    I tried it again and the code works now... My...

    I tried it again and the code works now... My question now is how do we clear the screen after the first trial are made? example:

    Enter Password: dasdadad //entered incorrect password
    Invalid...
  11. Replies
    8
    Views
    3,188

    Thanks for the immediate response guys... Tried...

    Thanks for the immediate response guys... Tried removing the clrscr() and it shows in the execution of the program 1277 tries... Why it exceeds the condition i!=3? Thanks in advance....
  12. Replies
    8
    Views
    3,188

    Password Checks 3 times Problem

    Hey guys I'm a newbie in C programming and I had a hard time trying to figure out whats the problem with my codes:


    #include <stdio.h>
    #include <string.h>
    main()
    {
    char pass1[20];
    char...
Results 1 to 12 of 12