Posts by Neha Prasad

Author Biographical Info: Not available

How To Rename a File in C++?

By Neha Prasad

In this tutorial, we will learn How to rename a file in C++. Rename() function is defined in stdio.h header file. It renames a file from oldname to newname. hence we can also use .... Read More

How to Generate Fibonacci Triangle in C++?

By Neha Prasad

In this tutorial, we will learn how to Generate Fibonacci triangle in C++ and the program takes number of rows as input and uses for loops to print Fibonacci triangle. The first in.... Read More

How to find sum of digits in C++

By Neha Prasad

In this tutorial, we will learn how to find sum of all digits of a number in c++ with some easy examples. Sum of digit means add all the digits of the number, for example, a number.... Read More

Related Posts