In this tutorial learn how you can write a c program to generate the Fibonacci series up to n terms given by the user. The Fibonacci numbers are the numbers in the following integer sequence. 0, 1, 1, 2, 3, 5,...
In this tutorial learn how you can write a c program to generate the Fibonacci series up to n terms given by the user. The Fibonacci numbers are the numbers in the following integer sequence. 0, 1, 1, 2, 3, 5,...
In this tutorial learn how you can find the larger number between two numbers using a conditional operator. We are using a test case “<test case>? True value: false value”. This is the shortcut form of the if statement. First, write...
In this tutorial learn how you can convert seconds into hours, minutes and seconds. There are 3600 seconds in 1 hour and 60 seconds in 1 minute. For a hours we first divide seconds by 3600 and for a minutes...
In this tutorial learn how you can write a c program to find mn. Where m and n are integers and consider the value of n be negative and 0 which is given by user. We are using <math.h> header and...
In this tutorial learn how you can write a c program to convert no of days into years, months and days. There are 365 days in 1 year and 30 days in 1 month. For a year we first divide days by...
In this tutorial learn how you can write a c program to find the area of a circle get the radius from the user and use pi as a constant variable. First, we will ask the user for the radius and...
Without using javascript, learn how to add a smooth scrolling effect for blogger. In this method, I am using simple CSS tricks which work for me and I think this also works for you also. Especially, a smooth scrolling effect is...
Learn how to add a responsive table in blogger posts. In blogger there isn’t a feature to add table in blogger. So, there are many ways to add a table in blogger according to your need. Today, I will share...
In this tutorial learn how you can get three numbers from the user and add three numbers. First, we will ask the user for the numbers and then add those numbers. C programming is a powerful general-purpose programming language. It can be used to...
In this tutorial learn how you can write a c program to create a hailstone series given a first number ‘x’ by user up to nth term. A Hailstone series is defined as follows: start with any integer value greater than...