Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

C program to print prime numbers using Sieve of Eratosthenes

Categories: Others. 1 Comment on C program to print prime numbers using Sieve of Eratosthenes

This is a C program to print prime numbers using Sieve of Eratosthenes, which is said to be the most efficient algorithm for generating prime numbers.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty if you’re human: The program is as follows: #include<stdio.h> […]

Read the rest of this entry »

C program to check whether the given number is armstrong or not

Categories: Others. No Comments on C program to check whether the given number is armstrong or not

In this article we will learn to implement a C program to check whether the given number is Armstrong or not. A C program is provided below that reads a number and prints whether it is a Armstrong number or not.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. […]

Read the rest of this entry »

C program to print the multiplication table of a given number

Categories: Others. No Comments on C program to print the multiplication table of a given number

In this article we will learn to implement a C program to print the multiplication table of a given number. A C program is provided below to read a number and print its multiplication table.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty […]

Read the rest of this entry »

C program to generate the first n terms of Fibonacci sequence

Categories: Others. No Comments on C program to generate the first n terms of Fibonacci sequence

In this article we will learn to implement a C program to generate the first n terms of Fibonacci sequence. A C program is provided below which reads a number and prints the Fibonacci sequence up to n.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave […]

Read the rest of this entry »

C program to find the sum of individual digits of a positive integer

Categories: Others. No Comments on C program to find the sum of individual digits of a positive integer

In this article we will learn to implement a C program to find the sum of individual digits of a positive integer. A C program is provided below which reads a number and gives the sum of digits and reverse of that number.   Subscribe to our monthly newsletter. Get notified about latest articles, offers […]

Read the rest of this entry »

C program which takes two integer operands and one operator

Categories: Others. 2 Comments on C program which takes two integer operands and one operator

In this article we will learn to implement a C program which takes two integer operands and one operator and then performs the operation and prints back the result.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty if you’re human: Program is as […]

Read the rest of this entry »

C program to find the roots of a quadratic equation

Categories: Others. No Comments on C program to find the roots of a quadratic equation

In this article we will learn to implement a C program to find the roots of a quadratic equation. A C program is provided below for calculating the roots of a quadratic equation ax^2+bx+c=0   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty if […]

Read the rest of this entry »