The interpreter and compiler perform same function but if fundamentally different ways.An interpreter translates the instructions of programme.One statement at a time.This translated code is first executed before the interpreter begins work on the next line.Tgus instructions are translated and executed simultaneously.The object code is stored in the computers memory for future use.The next time the instruction is to be used,it needs to be freshly translated by the interpreter
Simple interest #include < stdio.h > void main() { int amount, rate, time, ans; printf("\nEnter Principal Amount : "); scanf("%d", &amount); printf("\nEnter Rate of Interest : "); scanf("%d", &rate); printf("\nEnter Period of Time : "); scanf("%d", &time); ans = (amount * rate * time)/100; /*Simple interest formula*/ printf("\nSimple Interest : %d",ans); }
Comments
Post a Comment