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.

12 lines
120 B

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