Code:
	char *output="fps=";
	char tmp[20];


	strcat(output,itoa((int)fps,tmp,2));
that's my code, but my program always locks up at the "strcat" section. fps is a float, which i typecasted cuz of "possible loss of data"...see any problems?

I'm trying to get a string that says "FPS=<fps>", but it won't work