guys iam new to c++ ,i even dontknow what are the tools to use develop c++ aplications so if sny body know tools like that (c# MS visual studio,java netbeans) pls let me know.
and ma problem is i need to creat a link list on c++ .and i googled it and foung a method to creat a link list.so can any body tel me dose my aproch of creating a link list is correct or wrong.
creating a link list,,,,,,,,,,,
struct node {
string name[30];
int age;
node *nxt;
} ;
inserting values to link list
addValues ()
{
one = new node;
cout<<"plz enter ur name:";
cin>>one->name;
cout<<"plz enter age:";
cin>>one->age;
}
finish...