libraries to start programming

Dec 8, 2014 at 2:19pm
closed account (ypLhURfi)
What libraries are good and easy to start programming (cmath, iostream, fstream, cstring ...)?
Last edited on Dec 8, 2014 at 2:47pm
Dec 8, 2014 at 6:53pm
Well, each library contains different files in order for use to certain variables classes etc. All you need to begin programming is this in the beginning of every program:

1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;

int main()
{.....


}
Dec 8, 2014 at 8:22pm
closed account (ypLhURfi)
I already know the basics.
What I want is a useful library as iostream, fstream, cmath.
But thanks for answering.
Dec 8, 2014 at 8:37pm
"Useful" is completely dependent on the end application you are coding. What kind of program you want to write will define what libraries you need. If you're just looking for generally useful libraries to play with start here: http://www.cplusplus.com/reference/
Dec 8, 2014 at 8:49pm
closed account (ypLhURfi)
but for example cerrno will not be as useful as cmath.
if I say some nonsense is because this issue is not of
Dec 8, 2014 at 8:51pm
I'd say "iostream", "string", "cstring"(maybe), "vector"(a little later on), and perhaps "cmath" if you want to do some more complex arithmetic without having to implement the mathematics yourself.
"fstream" is good if you want to do some file input/output.
But I see you are already aware of most(if not all) of these libraries.
With those libraries, there are many many things you can do. Those are the libraries I use every day (with a few others here and there).
Those should be a great starting point.
Dec 8, 2014 at 8:53pm
closed account (ypLhURfi)
ok if I is a starting point :)
Dec 8, 2014 at 9:00pm
closed account (ypLhURfi)
thank you all
Topic archived. No new replies allowed.