In the previous article, we saw how to execute user defined function before main() in C. In C++ also we can use same mechanism to execute function before main. Here…
We know that the main() function is the entry point of a program. This is generally true. But we can execute some functions even before main() starts. In some circumstances,…
Circular linked list is like a regular linked list except its last node points to the first node. Generally the last node of linked list points to NULL. But the…
After sending an email, sometimes we realize that we shouldn't have sent that. You might accidentally sent that to wrong person or an incomplete email. Good news is that you…