Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/CodeWithHarry/The-Ultimate-C-Programming-Course
/ sum
Function
sum
Chapter 5/01_function.c:8–11 ·
view source on GitHub ↗
Function definition
Source
from the content-addressed store, hash-verified
6
7
// Function definition
8
int sum(int x, int y){
9
// printf(
"The sum is %d\n"
, x+y);
10
return x+y;
11
}
12
13
int main(){
14
int a = 1;
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected