#include void main() { float price,amt; int qty; clrscr(); printf("Enter the Price & Quantity: "); scanf("%f%d",&price,&qty); amt=price*qty; printf("The toatal amout for %d items is %f",qty,amt); getch(); }