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 9

CPP program to print Hello World

Suryateja Pericherla Categories: Others. No Comments on CPP program to print Hello World

In this article we will learn to implement a CPP program to print Hello World. A C++ program is provided below to print Hello World! to the stdout (generally console).   Porgram is as follows: #include <iostream> using namespace std; int main() { cout<<"Hello, World!"; return 0; }   Output for the above program is […]

Read the rest of this entry »

CPP Programs for Interviews

Suryateja Pericherla Categories: Programs. 3 Comments on CPP Programs for Interviews

Here is a compilation of most frequently asked CPP 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 C++ programs. To suggest a solution, click the C++ program link and write your program / solution as […]

Read the rest of this entry »

Introduction to MIT APP Inventor

Suryateja Pericherla Categories: MIT App Inventor. No Comments on Introduction to MIT APP Inventor

In this article we will learn about introduction to MIT App Inventor. First we will learn what is app inventor?, then uses of app inventor, and what are the different types of apps we can build using app inventor.   What is App Inventor? App Inventor is a web-based GUI (Graphical User Interface) tool developed […]

Read the rest of this entry »

Standard Template Library

Suryateja Pericherla Categories: C++ Programming. 1 Comment on Standard Template Library

This article provides a comprehensive overview of Standard Template Library (STL) in C++ programming language along with example programs.   Introduction The Standard Template Library (STL) is a collection of components to implement data structures and frequently used operations on data. Three major components in STL are: Containers Algorithms Iterators   Containers   Container is […]

Read the rest of this entry »

Generic Programming in C++ Programming

Suryateja Pericherla Categories: C++ Programming. 1 Comment on Generic Programming in C++ Programming

This article provides a comprehensive overview of generic programming in C++ programming language along with example programs.   Introduction To generate short, simple code and to avoid duplication of code, C++ provides templates to define the same piece of code for multiple data types. With templates, programmers can define a family of functions or classes […]

Read the rest of this entry »

Java program to reverse the array inplace

Suryateja Pericherla Categories: Arrays. 2 Comments on Java program to reverse the array inplace

In this article we will learn to implement a Java program to reverse the array. A Java program is provided below which reverses an array in-place (without using extra memory).   Following program reads an array of elements and reverses the array in place i.e., without using any temporary array: import java.util.Scanner; public class Driver […]

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