• modulo function problem in keil
    i have problem with keil int mode = -1; if (mode%5 == 0) { xyz(); } In the keil above if condition becoming true but in other compiler this same condition not becoming true what is the reason...
  • modulo function problem in keil
    i have problem with keil int mode = -1; if (mode%5 == 0) { xyz(); } In the keil above if condition becoming true but in other compiler this same condition not becoming true what is the reason...
  • keil v5: assign member variables when creating C++ class object go wrong, after new operator all assignments are not what I set.
    after executing constructors: m_Handle and bbb both with int type are not what I write, it seem it's memory alignment problem but all related class has 32bits int type member variables. And I...
  • Problem with Shift-Operator
    Hi, I have a Problem with the Shift-Operator >> within my C-Code. I'm using PK166 V4.2 The following code should set the Variable n to 0. void main() { unsigned char n; unsigned char p; /...
  • Problems with binary operator
    My keil version 4.0a Quick example: #include<lpc23xx.h> #include <math.h> #define RS 0x10000000; #define E 0x80000000; int main(void) { IODIR1 = RS + E ;} Why it doesn't work, it...