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 …
How to add your face in Mini Militia ?
Hello, what’s up everybody? This is coderpradip again. And in this post i am gonna teach you all to edit mini militia game within 5 Minutes. so let’s get started 🙂 Watch this Video or Read it 🙂 Download APK Editor Download Mini Militia Anonymous Edition Now, Open The APK Editor Pro After that …
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); }