Search:

Type: Posts; User: limburger

Search: Search took 0.00 seconds.

  1. Replies
    10
    Views
    2,088

    So I got it to finally run the whole program but...

    So I got it to finally run the whole program but now I am getting symbols instead of letters.


    #include <cstdlib>
    #include <iostream>
    #include <cctype>

    using namespace std;

    int main(int...
  2. Replies
    10
    Views
    2,088

    This is the code that force closes my program. ...

    This is the code that force closes my program. It is weird that it compiles but then doesnt allow the program to finish properly.


    #include <cstdlib>
    #include <iostream>
    #include <cctype>
    ...
  3. Replies
    10
    Views
    2,088

    It is supposed to be a pointer to "char* letter"....

    It is supposed to be a pointer to "char* letter". After I had taken a look to that line of code I realized I do not need anything other than "char *letter2;". The program compiled but I ran it,...
  4. Replies
    10
    Views
    2,088

    The error message is specific too char *letter2 =...

    The error message is specific too char *letter2 = new;
  5. Replies
    10
    Views
    2,088

    Thanks I totally forgot about the . I am...

    Thanks I totally forgot about the <cctype>. I am getting a build error and it is telling me that I need a identifier before the ';' token but I am not understanding what it is wanting. I have been...
  6. Replies
    10
    Views
    2,088

    Dynamic Array

    Hello All,

    So I have a program I am working on that utilizes a dynamic array and then takes a series of lowercase letters and changes them to uppercase. I have this program so far but when I...
  7. Replies
    2
    Views
    2,070

    Thanks that helped a lot. I have only been doing...

    Thanks that helped a lot. I have only been doing this for a couple weeks now and I am slowly learning.
  8. Replies
    2
    Views
    2,070

    Help with dividing fractions

    Hello,
    I have been trying to write a program that takes two fractions entered by the user and divides them. This is the code I have but unfortunatly even with a simple division of 1/2 by 1/2 gives...
Results 1 to 8 of 8