Search:

Type: Posts; User: kiddprogrammer

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,217

    oh then i need to say yes your info is found...

    oh then i need to say yes your info is found
    name pin account balance
  2. Replies
    6
    Views
    1,217

    first off thanks for looking in here yeah so...

    first off thanks for looking in here

    yeah so the person types in thier name and account number and pin and wether they want savings or checking
    then the program must look in that file to see if...
  3. Replies
    6
    Views
    1,217

    See i need to search the fiole they choose...

    See i need to search the fiole they choose (savings or checking)
    for the name account # and pin
    since people can have the same pins and names, the account number is really the only thing different...
  4. Replies
    6
    Views
    1,217

    io help with files

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

    void savings_account(FILE*);
    void checking_account(FILE*);

    struct Bank_Account{
    char Account_Name[30];
    int Pin_Number;
    int Account_Number;
  5. Replies
    6
    Views
    1,217

    Help with FILES

    This is what I want my program to do:

    Enter name followed by the account number and PIN.

    Prompt user for account type.

    Search for name, account number and PIN in the requested file.

    If...
  6. Replies
    7
    Views
    1,343

    i forgot a ) on the second printf

    i forgot a ) on the second printf
  7. Replies
    7
    Views
    1,343

    i forgot the & on the second scanf

    i forgot the & on the second scanf
  8. Replies
    7
    Views
    1,343

    so... #include struct...

    so...



    #include <stdio.h>

    struct information {

    int ss_number;
    char name[15];
  9. Replies
    7
    Views
    1,343

    simply question, structures

    so simple, but i found so many different ways to do it, but whats the easiest
    all i want to do is take info and put it in the stucture


    #include <stdio.h>

    struct info {

    int ss_number; ...
  10. Replies
    6
    Views
    3,655

    thanks again. if anyone wants to see the great...

    thanks again.
    if anyone wants to see the great working finished product, just ask in this post.
    later
  11. Replies
    6
    Views
    3,655

    awesome i think i figured it out, tell me if im...

    awesome i think i figured it out, tell me if im right..

    ------------------------------------
    printf ( "Enter an number 1-1000 (0 to quit): " );
    if ( scanf ( " %d", &val ) != 1 || !in_range (...
  12. Replies
    6
    Views
    3,655

    Sorry i clicked post back to it: #include...

    Sorry i clicked post back to it:
    #include <stdio.h>
    #include <stdlib.h>

    struct conversion
    {
    int arabic;
    char *roman;
    };
  13. Replies
    6
    Views
    3,655

    Thanks Prelude. I compiled and ran your code and...

    Thanks Prelude.
    I compiled and ran your code and It works and all, but its a little to complicated for me.
    I dont understand how the program actually converts
    im pretty sure it in here:

    for ( i...
  14. Replies
    6
    Views
    3,655

    Need help with Roman Numerals

    Hi, I need help with my program. All i want it to do is accept a number from 1 to 1000 then return a roman numeral.
    I know i can use pointers and arrays, but i don't understand them so i was going...
  15. Replies
    9
    Views
    1,161

    Keep trying Jlmac, keep posting your updates!!

    Keep trying Jlmac, keep posting your updates!!
  16. Replies
    9
    Views
    2,102

    I figure that this forum would house the most...

    I figure that this forum would house the most intelligent and helpful programmers so I guessed 3 dollars would be suffient for 10 minutes of thoughtlessness.
    This class is necessary to have full 12...
  17. Replies
    9
    Views
    2,102

    must be posted by fri march 7 at noon and ill...

    must be posted by fri march 7 at noon
    and ill message who ever posted it and send 3$
    NO JOKE
  18. Replies
    9
    Views
    2,102

    3$ paid for simple code

    Ill send 3$ via paypal for the successful completion of the following assignment:

    This problem will exercise both your modular programming skills, keeping track of lists and using the random...
Results 1 to 18 of 19