Hi all.
Im an absolute noob

and having trouble comparing a GUID with a String in c++.
code:
if(typeGUID == "7c5a9de3") {
printf("match found!");
}
error:
error C2679: binary '==' : no operator defined which takes a right-hand operand of type 'char [9]' (or there is no acceptable conversion)
I tried to convert (GUID>string or string>GUID) but no such luck.
Any ideas ?