PROGRAM


vinaykhatri
Vinay Khatri 7 September, 2019

Write a Program to Find the Sum of Series 1^2+3^2+5^2+…..+(2n-1)^2

Problem Statement In this programming tutorial, we will learn how to implement a program to find…

vinaykhatri
Vinay Khatri 7 September, 2019

WAP in C++ and Python to find the sum of the series x+ x2/2 +x3/3 + ……

Sum of the series is a common mathematical series that has several uses, and thus, is important. It…

vinaykhatri
Vinay Khatri 7 September, 2019

C++ & Python Program to sort an Array Using Bubble Sort

Here in this program, we will code to sort an unsorted array using bubble sort. Bubble sort is one …

vinaykhatri
Vinay Khatri 27 August, 2019

C, C++ and Python Program to Print Equivalent Name of the Day Based o…

In this tutorial, we will write simple programs in C, C++, and Python to print the equivalent name …

vinaykhatri
Vinay Khatri 27 August, 2019

Program to Reverse a String in Python and C Programming

In this program, we will ask the user to enter a string and print out that string in reverse order.…