1. WAP to input two numbers and print product of numbers
Answers
Answered by
1
Answer:
Acceleration, rate at which velocity changes with time, in terms of both speed and direction. A point or an object moving in a straight line is accelerated if it speeds up or slows down. ... Acceleration is defined as the change in the velocity vector in a time interval, divided by the time interval.28-May-2021
Answered by
1
Program to Multiply Two Numbers
printf("Enter two numbers: "); scanf("%lf %lf", &a, &b); Then, the product of a and b is evaluated and the result is stored in product . product = a * b; Finally, product is displayed on the screen using printf()
Similar questions