• Returning multiple values from a function??
    I want a function to return multiple values after doing data processing i.e. void test(int a, int b int c) whereas a, b and c have values set and control is returned to the caller with the values sent...
  • 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
  • Where are function parameters/return values stored?
    Hi, I'm looking at calling an ASM routine from some C code. I'd like to pass some parameters into the ASM routine, and have it return a value. I don't believe function arguments are passed on the stack...