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 multiply consecutive numbers in an array

Suryateja Pericherla Categories: Arrays. No Comments on C program to multiply consecutive numbers in an array

In this article we will try to implement a C program to multiply consecutive numbers in an array. A C program is provided below to find the product of consecutive numbers in a given array.   For example if the given array is: 1 2 5 4 1 2, then the output should be 1*2*1*2, […]

Read the rest of this entry »

C program to find number of duplicate elements in an array

Suryateja Pericherla Categories: Arrays. No Comments on C program to find number of duplicate elements in an array

In this article we will learn to implement a C program to find number of duplicate elements in an array. A C program is provided below which reads a list of number and prints the number of duplicates in a given array.   Note: This program only works if the numbers are repeated for 2 […]

Read the rest of this entry »

C program to swap the contents and indexes in an array

Suryateja Pericherla Categories: Arrays. 3 Comments on C program to swap the contents and indexes in an array

In this article we will learn to implement a C program to swap the contents and indexes in an array. A C program is provided below for swapping the array element with the corresponding array index number.   Given an array with size n and its contents are from 0 to n-1. Swap the index […]

Read the rest of this entry »

Basic array programs in Java

Suryateja Pericherla Categories: Arrays. No Comments on Basic array programs in Java

In this post we are going to look at some very basic and frequently asked array programs in Java interviews . Different programs are written as separate functions in the class ArrayClass. These programs are restricted to integers. Following programs are available: Reading elements into an array Printing elements in an array Printing the sum of […]

Read the rest of this entry »

Files in C Programming Language

Suryateja Pericherla Categories: C Programming. No Comments on Files in C Programming Language

This article provides a comprehensive overview of files in C programming language along with relevant examples.   So far we have been using scanf and printf functions for reading and writing data to the console. This is fine as long as the data is less. However, many real world problems involve large amounts of data. […]

Read the rest of this entry »
Blogarama - Blog Directory