Newer
Older
project / modules / libcalc / test / src / test.c
Nomura Kei on 27 Aug 2022 138 bytes UPDATE
  1. #include <stdio.h>
  2.  
  3. #include "calc.h"
  4.  
  5.  
  6. int main(void)
  7. {
  8. int a = 5;
  9. int b = 100;
  10. int c = add(a, b);
  11. printf("%d\n", c);
  12. return 0;
  13. }
  14.  
  15.