Untitled
unknown
c_cpp
2 years ago
202 B
13
Indexable
// declare function
int divide(int a, int b)
{
return a / b;
}
int main()
{
int a = 30, b = 5;
// call the function
int res = divide(a, b);
printf("Division is: %d", res);
return 0;
}Editor is loading...
Leave a Comment