← Back to Forum

function example in c subtraction

Posted on December 13, 2024, 4:43 pm


#include<stdio.h>
int sub(int x, int y)
{
printf("\n%d",x-y);
}
int main()
{

sub(8,5);
return 0;
}


Add a Reply


Replies (0)

No replies yet. Be the first to reply!