• Getting multiple return values from a function in registers
    Is it possible to get multiple return values from a function in a different way than in fixed memory? I often need to get more return values than 1 from a function, for example 2 integers (16bit) and...
  • Function return value if () are missing
    As I am sure most of us have at some time, I have ocasionally missed the () off the end when calling a function. e.g myFunction; instead of myFunction(); When I do this the code compiles and...
  • returning values from assembly to c
    i don't know who to returning values from inline assembly stored at memory locations 14h,15h,16,17h to c function pls help me
  • returning values from assembly to c
    i have to return values from inline assembly stored at locations 14h,15h,16h,17h to c function so pls help me
  • my function keeps returning the wrong value
    TbooleanVALUE showNUMBER ( int number ) { switch (number) { case 0: printf("0"); break; case 1: printf("1"); break; case 2: printf("2"); break; case 3: printf("3"); break; case 4: printf("4");...