c program to find product of two numbers Get link Facebook X Pinterest Email Other Apps - October 11, 2017 #include<stdio.h> #include<conio.h> void main() { int c,a,b; clrscr(); printf("enter 1st number="); scanf("%d",&a); printf("enter 2nd number="); scanf("%d",&b); c=a*b; printf("Product="); printf("%d",c); getch(); } Get link Facebook X Pinterest Email Other Apps Comments
Change Background color of HTML file - May 05, 2021 <html> <head> <title> background color </title> </head> <body bgcolor="coral"> <h1> Hello There </h1> </body> </html> My Youtube Channel Read more
Comments
Post a Comment