So far the operations using C program are done on a prompt / terminal which is not stored anywhere. But in the software industry, most of the programs are written to ...
Share
Although C does not provide direct support to error handling (or exception handling), there are ways through which error handling can be done in C. A programmer has t...
Share
Predict the output of following C++ program.
#include <iostream>
using namespace std;
  
class Test {
public:
  Test() { cout &...
Share
One of the advantages of C++ over C is Exception Handling. Exceptions are run-time anomalies or abnormal conditions that a program encounters during its execution. T...
Share
seekg() is a function in the iostream library (part of the standard library) that allows you to seek to an arbitrary position in a file. It is used in file handling t...
Share
Signals are the interrupts that force an OS to stop its ongoing task and attend the task for which the interrupt has been sent. These interrupts can pause a service i...
Share
Both languages use try, catch and throw keywords for exception handling, and meaning of try, catch and free blocks is also same in both languages. Following are the d...
Share
Prerequisites : Exception handling , control flow in try-catch-finally
1) What is the output of the following program?
public class Test
{
  
...
Share
An error is an action which is inaccurate or incorrect. There are three types of error in programming which are discusses below :
Syntax error
Logical error
Runtime ...
Share
Introduction
This tutorial explains how to carry out a ajax request in Django web framework. We will create a simple post-liking app as a part of example.
Glossary
...
Share