C++ classes

Dear People,
I need some help in figuring out how to add C++ classes like <string>, <algorithm> etc in my development environment.

Is there a way I can download them into my development environment as dependency?

Since my current C++ program depends on various classes and my compiler is generating significant errors since the program doesn't seem to connect with the desired classes.

Looking forward to your support.


At the start of your code, include the headers for those classes which will be used by the rest of the program
1
2
3
#include <iostream>
#include <string>
#include <algorithm> 
Topic archived. No new replies allowed.