Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /**
  2. * @details
  3. *
  4. * @author
  5. *
  6. * @remarks
  7. *
  8. * @returns
  9. */
  10. void addNums(int a, //!< [In] The first number to add
  11. int b, //!< [In] The second number to add
  12. int &c //!< [Out] The result of the add operation
  13. )
  14. {
  15. c = a + b;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement