#include <stdio.h>

int fun(int x,int y){ 
int d;
d=x+y;
return(d);}

int main(){ 
int x=10,y=20,d;
d=fun(x,y);
printf("%d",d);}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: