What are function annotations in Python

By Priya Bhowmick

Today we will discuss function annotations in Python. Function annotation links arbitrary metadata to the function arguments and its return value. PEP3107 has introduced the syntax.... Read More

Java Higher Order Functions

By Kamalpreet Singh

In this tutorial, we will learn about the Higher Order Functions in java. Higher-Order Functions are the functions that either take a function as a parameter or return the function.... Read More

Lambda Expression in C++

By Shubham Baniya

So in this tutorial, we are going to learn and implement Lambda Expression in C++. So while writing programs in C++, you may have come to one point where you wished that just like .... Read More

Difference between NULL and nullptr in C++

By Shubham Baniya

In this tutorial, we are going to learn about what is the difference between NULL & nullptr in C++. NULL in C++ “NULL” in C++ by default has the value zero (0) ORÂ.... Read More

round() function in Python

By Ranjeet V

In this tutorial, we will learn to use the round() function in Python. We use this function to round off any floating number to a given number of digits after the decimal point. If.... Read More

Faker Library in Python

By Ranjeet V

Faker Library in Python is used to generate fake data in our program. There are many methods defined in this library that we can use to produce a fake name, id, date, time, email, .... Read More

atexit() function in C++

By Ranjeet V

In this tutorial, we will learn about atexit() function in C++. This function is used to call a function that must be executed before the program terminates. Its working and usage .... Read More

Draw a line in C++ graphics

By Siddharth Shankar Debata

In this tutorial, we will learn to draw different types of lines in C++ using the graphics library as it is used quite frequently in C++ graphics coding. Because sometimes to get t.... Read More

Related Posts