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

 

Write a Program to check whether the number is positive or not in C Programming

Hello, What’s Going on? You guys know that i am regularly uploading the Programs related to c Program to help you all in C. So, if you wanna learn more about C Click here Okay, have a look on the code //write a program to check whether the number is positive. #include<stdio.h> void main(){ int number; …