Untitled
unknown
c_cpp
a year ago
202 B
8
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