C Programming
Home C Programming
Episode 15: Factorial
Factorial in C Programming
Do you know about Factorial? let's say factorial of 5 then it will be 5*4*3*2*1 = 120.
So you have to get...
Episode 14: Prime Number
Prime Number In C Programming
This is a program of Prime Number, First we will print prime number till N number. Second, we will check...
Episode 13: Swapping Number
Explanation:
Swapping is very easy concept. Take a 2 value lets say first number is 12 and second number is 10. Now swap it that...
Episode 12: Checking Palindrome Number
Explanation: What is a palindrome? Palindrome means a number is same even when it is reversed. Just for example 121. It remains same even if...
Episode 11: Reverse A Number Program
Take A Number, Reverse It.
Explanation:
Reversing A number is very tricky concept but it is very easy to implement. Take a value from user, store...
Episode 10: Program to add digits of a number
Get a number, add all the digits and print the sum.
Explanation:
First take a number and store it in variable 'n'. Now we want each...
Episode 9: Greatest Number Of 3
Programming for Greatest number of 3
Explanation:
Here we will be seeing a number which is greater than other 2 . Take 3 variable, compare each...
Episode 8: Leap Year Program
Leap Year in C Programming
Do you know what Leap Year is? No, then go to this website (https://www.mathsisfun.com/leap-years.html) immediately.
Now you came to know the...
Episode 7: Odd or Even program
Checking Odd Or Even Number
Hi there, Today I want to explain this stuff and make you think about the logic.Do you know Odd or...
Episode 6: Area Program
Area Program
These programs are very easy as they only needs formula and so you can execute it perfectly. I have taken an example of...