fThAbhishek-Pandey/C-2022

Sum of two number

Opened this issue · 1 comments

#include<stdio.h>
void pagal(int k,int h);//declared of functions

int main(){
int a,b;
a=7;
b=9;
pagal(a,b);//colling of funtion

}
void pagal(int k,int h)//define function
{
int u;
u=k+h;
printf("the sum is %d", u);

}