/* MULTIPLECATION OF TWO FLOAT NO. */
#include <stdio.h>
main()
{
float a , b , c;
printf("Input two numbers... \n");
scanf("%f%f" , &a , &b);
c = a * b ;
printf("%f times %f = %f\n" , a , b , c);
}
|
Active Topics:
|
Return to Computer Notes : Some Sample Programs
Users browsing this forum: No registered users and 0 guests