Posts by Animisha Dalal

Author Biographical Info: Not available

Calculate age from date of birth in C++

By Animisha Dalal

In this tutorial, we will learn how to calculate age from date of birth in C++. Calculate age from date of birth in C++ In the following program, we will take as input the present.... Read More

fma() function in C++

By Animisha Dalal

In this tutorial, we will learn about fma() function in C++. This is one of the popular functions among the Mathematical functions in C++. fma stands for Fused Multiply-Add. Thi.... Read More

Date and Time in C++

By Animisha Dalal

In this tutorial, we will learn about the date and time in  C++. Date and Time in C++ For various programs, we need to access the time and the date, along with other calendar-rela.... Read More

Namespaces in C++

By Animisha Dalal

In this tutorial, we will learn about Namespaces in C++. Namespaces in C++ Let’s start with understanding what is namespace and why do we need it. A namespace is a declarativ.... Read More

sinh() function in C++

By Animisha Dalal

In this tutorial, we will learn about the sinh() function in C++. sinh() function in C++ sinh is the hyperbolic sine function. The hyperbolic Sinh(t) is the length of a perpendicu.... Read More

log() function in C++

By Animisha Dalal

In this tutorial, we will learn about log function in C++. log() function in C++ log() is the natural logarithmic function. It is the inverse of natural exponential function (e). W.... Read More

Data Type Modifiers in C++

By Animisha Dalal

In this tutorial, we will learn about data type modifiers in C++. As we already know, there are four types of built-in data types in C++, namely int char float double Various Data .... Read More

Signal Handling in C++

By Animisha Dalal

In this tutorial, we will learn about Signal Handling in C++.  Signal Handling in C++ What are the signals? Signals are the interrupts delivered by an operating system to a proces.... Read More

Related Posts