Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

MyAttemptAtTaskOneSummerWork

#include<stdio.h>
#include<stdlib.h>


int main()
{
        int val1=0;
        int val2=0;
        printf("Enter two numbers to be multiplied:");
        fflush(stdin);
        scanf("%f,%f",&val1, &val2);
        printf("\nThe product of these two numbers is: ""%f", val1*val2 );
        system("pause");
        return 0;
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.