Write a program to sum of two integers using function

#include<stdio.h>
#include<conio.h>
void sum(int a,int b)
{
int sum=0;
sum=a+b;
printf(“sum is %d”,sum);
}
void main()
{
int c,d;
printf(“Enter: “);
scanf(“%d%d”,&c,&d);
sum(c,d);
getch();
}