hello.c 144 B

1234567891011
  1. #include "hello.h"
  2. #include <stdio.h>
  3. void sayHello() {
  4. printf("Welcome to the C World!\n");
  5. }
  6. int sum(int a,int b){
  7. return (a+b);
  8. }