//Calculate the sum of numbers
#include <stdio.h>
int calculateSum(int a, int b){
return a + b;
}
int main() {
int a = 5;
int b = 6;
int sum = calculateSum(a,b);
printf("%d", sum);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: