Can anyone help me with this conversion from MikroBasic to MikroC?
in MB:
FormattedDataString = text + "," + text1 + "," + text2
my effort in C :
FormattedDataString = (text + "," + text1 + "," + text2);
char FormattedDataString [100];
char text,text1,text2;
Regards Sarel