I've tried everything to get a string working. I can't seem to find ANY helpful information on the compiler or classes you can use.

I've tried the following:

#include <string>
#include <string.h>
#include <String>
#include <String.h>


None of those work when I try to declare a String:

String s;

It gives me an error saying String is undeclared.
I'm using the Bloodshed IDE by the way, and I looked at an example it came with and they used:

#include <string.h>

but that still doesn't work for me.

Am I doing something wrong? Is there any helpful documentation?