Computer Science, asked by kailanydas68, 7 hours ago

write a c program to print the difference and product of two numbers​

Answers

Answered by majirouvik
5

Answer:

#include <stdio.h>

int main()

{

int a = 5, b = 10;

printf("Difference: %d", (a-b));

printf("\nProduct: %d",(a*b));

return 0;

}

P.S.- Make me brainliest!

Similar questions