Link to home
Start Free TrialLog in
Avatar of Sankar_V
Sankar_V

asked on

Iam new to C++!

Hi Experts!

Iam new to C++ language!

Iam having Visual Studio 6.0!

Can u help me about creating simple executable project with step by step instructions or any site providing the help!

Also i want to know what kind of things can be made with VC++!

Thanx a lot!
ASKER CERTIFIED SOLUTION
Avatar of Paul Maker
Paul Maker
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Sankar_V
Sankar_V

ASKER

Thanks Makerp!

Can u give me some more like some input / output functions??
Thanks Braindude!

The link u specified gives many codes.........

I will get ba 2 u soon after going through that!

May be with some doubts!
for input and output try either C functions such as printf and gets or C++ iostream classes like cin and cout. personally i would go with the later.

#include <string>
#include <iostream>
using namespace std;

void main()
{
  string str;
  cout<<"Enter a string: ";
  cin>>str;
  cout<<str<<endl;
}

here we also use the string class..

all of these things can be looked up in the help or MSDN
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sorry Guys........Sorry 4 the delay!

I was busy with VB projects!

Thanx 4 ur help!