learning about strings
//My first time using strings
#include <stdfax.h>
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystring = "this is a string";
cout << mystring;
return 0;
}
so im learning about strings and i want to know if it matters which order i put my file types (iostream stdfax string)
is there a specific order? or can i just put it in random
and also mystring = "This is a different string content";
cout << mystring << endl;
what does endl; mean?
what does it do
#include <stdfax.h>
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystring = "this is a string";
cout << mystring;
return 0;
}
so im learning about strings and i want to know if it matters which order i put my file types (iostream stdfax string)
is there a specific order? or can i just put it in random
and also mystring = "This is a different string content";
cout << mystring << endl;
what does endl; mean?
what does it do

Hurray for accidental learning experiences.