Originally posted by gustavosserra
If I´m not mistaken you should include the cstring.h.

#include <string.h>
#include <iostream.h>


int main(int argc, char *argv[]){

string name;

name = "I Love Fries";

cout << name;

return 0;

}
it's either, <cstring> , <string> , or the deprecated <string.h> . but not <cstring.h> .