Search:

Type: Posts; User: ariamundi

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,026

    ftn that returns type

    I am looking for a function that returns what a value is...if it's a digit or a char.
    Basically, here's what I'm trying to do:

    // class outline

    class mb
    {
    public: mb( int i );
    ...
  2. Replies
    2
    Views
    1,019

    :D Thanks!

    :D
    Thanks!
  3. Replies
    2
    Views
    1,019

    delete array - get error

    I am using test code listed below.
    it's giving me a segmentation fault at the delete []ch; line.

    #include <iostream.h>
    int main()
    {
    char* ch = new char[3];
    ch = "ts";
    cout << "ch is: " << ch...
Results 1 to 3 of 3