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****
C Programming
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 …
Write a program to display the square of any number in C programming
Check out this program and Enjoy #include<stdio.h> #include<conio.h> void main(){ int a,x; printf(“enter the number”); scanf(“%d”,&a); x=a*a; printf(“the square is %d”,x); }