Search:

Type: Posts; User: TampaTrinDM88

Search: Search took 0.01 seconds.

  1. The program I am working on an update of a prior...

    The program I am working on an update of a prior project that I did using structs. In that program, I was able to use num_students as a array number, which allowed me to average each quiz, test...
  2. Alright, I enclosed the code, but I am still...

    Alright, I enclosed the code, but I am still getting a segmentation fault.




    #include <stdio.h>
    #include <stdlib.h>
    #include <ctype.h>
    #define NAME_LEN 50
  3. It is compiling, but it still is not working...

    It is compiling, but it still is not working properly. If I enter a word, weird output comes up, and it does not stop once you press enter.

    Here is what I get:

    Enter a word: boo
    Enter a word:...
  4. Using dynamically allocated strings to sort words

    Here are the instructions:

    Write a program that sorts a series of words entered by the user:

    Enter word: foo
    Enter word: bar
    Enter word: baz
    Enter word: quux
    Enter word:
  5. Using dynamically allocated strings to sort words

    Here are the instructions:

    Write a program that sorts a series of words entered by the user:

    Enter word: foo
    Enter word: bar
    Enter word: baz
    Enter word: quux
    Enter word:
  6. How to calculate grades using Linked Lists

    Here are the program details:

    1. Modify the grading program from project 12 such that:

    1) The program uses the same grading policy. The program will read in the students’ scores.

    2) The...
  7. C program using structs to calculate grades

    Here is the program description:

    1. Write a grading program for a class with the following grading policies.

    a. There are two quizzes, each graded on the basis of 10 points.
    b. There is one...
  8. Replies
    6
    Views
    14,293

    I am close to finishing this program, but there is still a slight problem

    I am getting the follwing output.

    Enter a first and last name: Lloyd Fosdick
    Fosdick, F.

    This is what is expected:

    Enter a first name and last name: Lloyd Fosdick
    Fosdick, L.
  9. Replies
    6
    Views
    14,293

    C program to reverse names

    This is the output expected:

    Enter a first name and last name: Lloyd Fosdick
    Fosdick, L.

    I am given this function to use:

    int read_line(char str[], int n)
    {
    int ch, i = 0;
Results 1 to 9 of 10