Program to calculate Total amount, VAT & TAX CASE STUDY CLASS 12 Hello Every student of class 12. Welcome back/welcome to my blog. Through out this post i want to teach you the program to calculate the total amount VAT and the TAX of Nepal Telecom Bill. So here is the program only dedicated to …
Programming
You can find all the Posts related to Programming in this Category
Write a program which calculates and displays the result of 5 Subjects in C Programming
Hello everyone, I am presenting a new program to this blog. I hope you all will learn more things from this blog. so here is the program to calculate the total marks and the percentage. Let’s have a look and comment below if you have any problems. ****Program Not Found Please Contact Admin****
Write a program to find the leap year in c Programming
Hello there, I am Anu Poudel. and i am also sharing many Programs in this blog so. here is my First Program. So here is the program to check the leap year. #include<stdio.h> #include<conio.h> void main() { int n; printf(“\nEnter any year : “); scanf(“%d”,&n); if(n%4==0) printf(“\nYear is a leap year”); else printf(“\nYear …
Write a program to check whether the given letter is vowel or consonant in C Programming
Okay, Here i am updating a another new program to check the string : So, Check this out and if you have any question about my blog or this post, Please feel free to comment ! Don’t be shy 🙂 Alert: here i have used or(||) operator here ! It’s simple … :p #include<stdio.h> void main(){ …
Write a Program to find out the perimeter of Triangle, Rectangle and Circle using Switch case in C Programming
Hello, The program is long as other program! If you guys are not understanding the Code feel free to comment below! First Please check the code. #include<stdio.h> void main(){ int option; float r,l,b,a,c,res; printf(“Please Select any one option \n 1 For Perimeter of Circle \n 2 for Perimeter of Rectangle \n 3 for Perimeter of …