• bit type
    Hi all, Is it possible to print bit types using: bit bitvalue; bitvalue = funcReturningBitType(); sprintf(g_SIOString, "bit = %u\n", bitvalue); String_to_serial_port(g_SIOString); The function...
  • VARIABLE TYPE CONVERTION PROBLEM
    I AM GETTING SOME DATA FROM TEMPERATURE SENSOR. IT IS A DOUBLE DATA TYPE. IS IT POSSIBLE TO CHANGE IT TO LONG OR INT DATA. AND JUST KEEP THE INTEGER PARTS. THX
  • HANDLE and DWORD variable types
    Is there a way to use the HANDLE and DWORD variable types with the Cx51 & 8051? And if so, do I need to use a certain '#include'? Thanks!
  • urgent! variable type conversion
    i have some problem about integer conversion Pls help! 1. what will happen if i make a float variable to the integer or char? e.g: float a=2.02342; int x; char y; x=a; y=a; what will...
  • Bit variables
    I want to define a 8 BIT variable and char variable that occoupy the same memory loaction in the memory. so any change in the char variable should reflect the bit variable. In C we can define a structure...