Computer Science, asked by 1986suman, 2 months ago

INPUT B PRINT B, B *2, b*3 PRINT B*4, B*5, B*6

Answers

Answered by agrim9928
0

Answer:

if it is correct mark me as brain list!!!

Explanation:

#include <stdio.h>

int main()

{

   int a = 25;

   int b = 8;

   printf("sum = %d", (a+b));

   printf("\ndifference = %d", (a-b));

   printf("\nproduct = %d", (a*b));

   printf("\nremainder = %d\n", (a%b));

   return 0;

}

Similar questions