Skip to content

Commit

Permalink
sum funtion added
Browse files Browse the repository at this point in the history
  • Loading branch information
hkshitesh committed Nov 19, 2023
1 parent 0351ec2 commit cc9ac5f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions hitesh.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include<stdio.h>
void sum(int a, int b)
{
retrun a+b;
}

void main()
{
sum(20,30);
}

0 comments on commit cc9ac5f

Please sign in to comment.