home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <condefs.h>
- #include <conio.h>
- #include <iostream.h>
- #pragma hdrstop
-
- //---------------------------------------------------------------------------
- //
- // We comment out the argc and argv variables to avoid
- // compiler warnings.
- //
- int main(int /*argc*/, char /***argv*/)
- {
- char str[] = "This is a string.";
- cout << str << endl;
- str[7] = '\0';
- cout << str << endl;
- cout << endl << "Press any key to continue...";
- getch();
- return 0;
- }
- //---------------------------------------------------------------------------
-
-