30.08.2009, 16:04
Quote:
Originally Posted by [HUN
Peti ]
Hi, again! Now I can printf the variable(SomeString). But if I want to print it like this: printf("SomeString: %s", somestring); I get this: SomeString: But If I print just the somestring var like this: printf(somestring); I get the var's value :/. So I don't know what's the problem... Please help me |
Try using something like printf("TestString: %s", "Here it is!"); If that works, then your variable being passed is empty.