Search:

Type: Posts; User: nuddy

Search: Search took 0.00 seconds.

  1. Thread: Updating Records

    by nuddy
    Replies
    18
    Views
    2,957

    How can i write what the user change back to the...

    How can i write what the user change back to the file "record.txt"


    void UpdateStudents(Student students[])
    {
    int choice;
    for (int i=0;i<10;i++)
    {

    printf("What do you want to...
  2. Thread: Updating Records

    by nuddy
    Replies
    18
    Views
    2,957

    could u put mines in the for loop just to give me...

    could u put mines in the for loop just to give me an example of what it will do
  3. Thread: Updating Records

    by nuddy
    Replies
    18
    Views
    2,957

    void UpdateStudents(Student students[]) { ...

    void UpdateStudents(Student students[])
    {
    int choice;
    printf("What do you want to change?\n");
    printf("1. Change ID number\n 2. Change Last Name\n 3. Change First Name\n 4. Change Date of...
  4. Thread: Updating Records

    by nuddy
    Replies
    18
    Views
    2,957

    3rd: You will need to make a switch statement to...

    3rd: You will need to make a switch statement to switch around your position and consider what field needs editing in each of its cases.


    This is what i dont understand. And im not asking u to do...
  5. Thread: Updating Records

    by nuddy
    Replies
    18
    Views
    2,957

    its kinda complicated. could u give me an example

    its kinda complicated. could u give me an example
  6. Thread: Updating Records

    by nuddy
    Replies
    18
    Views
    2,957

    could u show me how to allow the user to update...

    could u show me how to allow the user to update the record. i.e if the user want to change something from the record he will be able to then append the new entry with the what the user edit
  7. Thread: Updating Records

    by nuddy
    Replies
    18
    Views
    2,957

    Updating Records

    Is it possible you could edit this function to update this particular record.

    Record

    struct Student
    {
    int ID;
    char LastName[32];
    char FirstName[32];
    int DateOfBirth;
  8. Thread: Update Files

    by nuddy
    Replies
    2
    Views
    1,132

    Could u show me how can i upate this record from...

    Could u show me how can i upate this record from this function i have created?



    #include <stdio.h>
    #include <ctype.h>

    struct Student
    {
    int ID;
  9. Thread: Update Files

    by nuddy
    Replies
    2
    Views
    1,132

    Update Files

    Is this syntax C++?
    If it is how can i make it do the same thing in the C Language


    void studentClass::updateIndex(int id, long int pos)
    {
    indexType INDEX;
    ofstream indexFile( INDEXFILE,...
  10. Replies
    2
    Views
    5,896

    Structures and Files

    You are required to create a student management system that will allow you to store and
    update student records. Each student record should consist of an id, a name (fist name
    and last name), date...
  11. Replies
    13
    Views
    4,608

    C:\Documents and...

    C:\Documents and Settings\Nuddy\Desktop\coursework2.cpp In function `void LetUserSearchForStudent()':
    69 C:\Documents and Settings\Nuddy\Desktop\coursework2.cpp expected primary-expression before...
  12. Replies
    13
    Views
    4,608

    its alot, could u copy the code and modify it for...

    its alot, could u copy the code and modify it for me plz
  13. Replies
    13
    Views
    4,608

    The program not compiling. I think something is...

    The program not compiling. I think something is wrong the functions
  14. Replies
    13
    Views
    4,608

    Records and Files

    This topic is really new to me, i was just reading some stuff ahead of my class and saw a practisable question, I have started it but now im really confuse. I would appreciate it if someone cold...
Results 1 to 14 of 14