# include<>
#include<>
int main(void)
{
int a,b;
printf("Enter a positive & Negative integer :");
scanf("%d %d",&a,&b);
printf("The value of a /b is %d \n ", (abs (a) / abs (b)));
printf("The value of a %% b is %d \n", (abs (a) % abs (b)));
return 0;
}
No comments:
Post a Comment