Subj : Re: Newbie needs help! To : borland.public.cpp.borlandcpp From : Bruce Salzman Date : Thu Feb 03 2005 06:46 pm > #include ( I even change this line to read #ainclude > ) > #include is correct. > using namespace std; > > int main() > { > cout <<"Welcome To C ++ Programming"< return 0; > } > > The program is suppose to display the Welcome to line but all I hear > is a > "ding" and that is it. I tried File > New > Application, File > > New > C++ > file and a few others.......can someone give me some direction on > using > Builder 6 with the Malik book? You are creating a console mode ("DOS" window) program. Put a breakpoint on the return statement (click in the left gutter in the edit window). This will stop execution long enough to see the output. BTW, File | New | Other |Console Wizard is used to create a console mode app. This group is for the old Borland C++ compiler. The C++ Builder groups all have cppbuilder in their name. Hope that helps. -- Bruce .