Discount and Final Price Calculation Dry Run in C

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.

Discount and Final Price Calculation Program Code

#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;
}

View the complete Input Output programs page.

Program Console Discount and Final Price Calculation Topic: C Vignaankosh.com
Execution Panel
Step 0/0
Console is empty.