Thread: Where can i download C++ installation files and tutorials?

  1. #1
    shaijujose
    Guest

    Lightbulb Where can i download C++ installation files and tutorials?

    Hi all,

    I frankly, would like to start C++. I would wish to study using internet. Where can i download free turbo C++ installation files to install C++ in my system? I had downloaded free installation files from www.borland.com, that shows errors while compile, what is the problem? How can i resolve that?

    Help this new one in C++.

    Shaiju Jose.

  2. #2
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >How can i resolve that?
    Problems with compiling programs on the command line compiler for Borland are most often caused by an incorrect install. Try reading through the instructions and doing it again. If the following program bombs then the compiler isn't set up correctly:
    Code:
    #include <iostream.h>
    
    int main()
    {
      cout<<"Hello, World!\n";
      return 0;
    }
    or
    Code:
    #include <iostream>
    
    int main()
    {
      std::cout<<"Hello, World!\n";
      return 0;
    }
    -Prelude
    My best code is written with the delete key.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Error opening files in a different dir
    By Ozzie in forum C++ Programming
    Replies: 3
    Last Post: 10-09-2008, 06:55 AM
  2. Help using Header Files
    By d34n in forum C Programming
    Replies: 8
    Last Post: 04-21-2008, 11:06 PM
  3. Writing to files
    By earth_angel in forum C++ Programming
    Replies: 13
    Last Post: 06-21-2005, 11:26 AM
  4. Got any tutorials or programs?? Send them to my web site!
    By robmil29 in forum C++ Programming
    Replies: 6
    Last Post: 09-27-2004, 11:38 AM
  5. Replies: 4
    Last Post: 04-21-2004, 04:18 PM