C++ Program for Sum of Even and Odd Numbers
This is a simple program to compute the sum of first 10 even and odd numbers and display the results.It is intended for beginner level… Read More »C++ Program for Sum of Even and Odd Numbers
This is a simple program to compute the sum of first 10 even and odd numbers and display the results.It is intended for beginner level… Read More »C++ Program for Sum of Even and Odd Numbers
Previous Next A stack is a common data structure used in many applications. It is an abstract data type defined not by its data type,… Read More »C Program to Implement a Stack
The program computes the area of triangle once he user enters input values for the triangle. The inputs for the triangle are the length of… Read More »C Program to find Area of a Triangle
The C program to count the frequency of vowels, consonants and white spaces for a given word or a sentence is a string manipulation program.… Read More »C Program To Count Frequency Of Vowels
The C program to display student results demonstrates the working of conditional statement in the C language. The program takes student’s marks in percentage (%)… Read More »C Program To Display Student Results
The main() function in a C program calls other functions. Some functions need arguments and some do not need any arguments. The efficiency of the… Read More »C Function that Implements Call-By-Reference
The program adds first N natural numbers (starts from 1) and prints the sum in the console. We wrote this program using Dev C++ version… Read More »C Program for Sum of First N Natural Numbers
The program computes Nth Fibonacci number using a technique called recursion and prints the results. A recursion is the ability of a procedure or function… Read More »C Program To Compute Nth Fibonacci Number
We know that the simple statements are represented as p, q and so on. Suppose we are given a compound preposition. There is another property… Read More »Prepositional Logic – Duality
C++ is a very popular programming language. Every C++ program has a general structure that it must follow. Here is common structure of a C++… Read More »C++ Program Structure