Untitled

 avatar
unknown
c_cpp
6 months ago
202 B
4
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