Program Console Vignaankosh.com
Execution Panel
Console is empty.
Discount and Final Price Calculation is an interactive C dry run visualizer from the Input Output programs section. Study the source code, then use the execution controls to follow each step, variable update, highlighted line, and console output.
This page provides a browser-based dry run with source-code highlighting, auto-scroll, voice narration controls, and execution output for learning the program step by step.
#include <stdio.h>
int main() {
float price, discountPercent, discount, finalPrice;
printf("Enter original price: ");
scanf("%f", &price);
printf("Enter discount percentage: ");
scanf("%f", &discountPercent);
discount = price * discountPercent / 100;
finalPrice = price - discount;
printf("Discount = %.2f\n", discount);
printf("Final Price = %.2f", finalPrice);
return 0;
}