• Error C193 : '==' : illegal type conversion ??
    Hi, I have tried to remove this error but no way. Error C193 : '==' : illegal type conversion from/to 'void' I have tried to include severals headers file but nothing, how can I resolve this...
  • Error C193 : '==' : illegal type conversion ??
    Hi, I have tried to remove this error but no way. Error C193 : '==' : illegal type conversion from/to 'void' I have tried to include severals headers file but nothing, how can I resolve this...
  • Why does data type conversion not raise an error?
    Hi, I have this code: void main(void) { data unsigned char a = 0; data unsigned char b = 0; data unsigned int c = 1000; b = c; while(1) { a+= 1; } } And it compiles with no errors or...
  • Why does data type conversion not raise an error?
    Hi, I have this code: void main(void) { data unsigned char a = 0; data unsigned char b = 0; data unsigned int c = 1000; b = c; while(1) { a+= 1; } } And it compiles with no errors or...
  • type conversion
    i have the followin program float a; long int c; float b; now i haave an expression a = b- c*0.05 however when i run this expression in simulator the values are correct...however in the machine...