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.
Home » Programming » Page 18

C program to generate the first n terms of Fibonacci sequence

Suryateja Pericherla 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.   Program is as follows: //C program to generate the first n terms of a Fibonacci sequence […]

Read the rest of this entry »

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

Suryateja Pericherla 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.   Program is as follows: //C program to find the sum of […]

Read the rest of this entry »

C program which takes two integer operands and one operator

Suryateja Pericherla 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.   Program is as follows: //C program which takes two integer operands and one operator from the user, performs the operation and then prints the result […]

Read the rest of this entry »

C program to find the roots of a quadratic equation

Suryateja Pericherla 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   Program is a follows: //C program to find the roots of a quadratic equation. Ex: ax^2+bx+c=0 #include<stdio.h> #include<conio.h> #include<math.h> void […]

Read the rest of this entry »

C program to find 2’s complement of a binary number

Suryateja Pericherla Categories: Arrays. No Comments on C program to find 2’s complement of a binary number

In this article we will learn to implement a C program to find 2’s complement of a binary number. A C program is provided below which reads a binary number and prints its 2’s complement.   Program is as follows: //C program to find the 2's complement of a given binary number #include<stdio.h> #include<conio.h> void […]

Read the rest of this entry »

C program to swap two numbers without using a temporary variable

Suryateja Pericherla Categories: Others. No Comments on C program to swap two numbers without using a temporary variable

In this article we will learn to implement a C program to swap two numbers without using a temporary variable. A C program is provided below which reads two numbers and interchanges them with using a temporary variable.   Program is as follows: //C program to swap two numbers without using a temporary variable #include<stdio.h> […]

Read the rest of this entry »

C program to find the largest of three numbers using ternary operator

Suryateja Pericherla Categories: Others. No Comments on C program to find the largest of three numbers using ternary operator

In this article we will learn to implement a C program to find the largest of three numbers using ternary operator. A C program is provided below to read three numbers and print the biggest or largest of these numbers.   Program is as follows: //C program to find the largest of three numbers using […]

Read the rest of this entry »

C program to calculate the area of a triangle

Suryateja Pericherla Categories: Others. No Comments on C program to calculate the area of a triangle

In this article we will learn to implement a C program to calculate the area of a triangle. A C program is provided below to read the three sides of triangle and display the area of the triangle as output. //C program to calculate the area of a triangle //Formula: area = (s(s-a)(s-b)(s-c))1/2, where s=(a+b+c)/2. […]

Read the rest of this entry »

Java Programs for Interviews

Suryateja Pericherla Categories: Programming. No Comments on Java Programs for Interviews

Here is a compilation of most frequently asked Java programs for interviews. These programs are generally asked in technical rounds or coding rounds.   You are more than welcome to suggest other solutions for the below listed Java programs. To suggest a solution, click the Java program link and write your program / solution as […]

Read the rest of this entry »
Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory