You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 rivejä
162 B

  1. #include "stdio.h"
  2. int add(int a,int b)
  3. {
  4. return a + b;
  5. }
  6. int sub(int a,int b)
  7. {
  8. return a-b;
  9. }
  10. int main()
  11. {
  12. printf("hello world!");
  13. return 0;
  14. }