• Articles

Difference Between fork() and exec() in Tabular Form

2 years ago

In this article, we'll be discussing meaning of fork() and exec() in C and differences between them. fork() and exec() both are system calls that… Read More

  • Articles

Difference Between Delete and free() in C++

2 years ago

In this article, we'll be discussing the meaning of the delete operator and free() function in C++ and the differences between them. Both delete and… Read More

  • Articles

Single Inheritance in Java With Program Examples

2 years ago

Inheritance enables a class to obtain all the properties from another class and works in an IS-A relationship manner. It empowers code reusability and minimize… Read More

  • Articles

Why Multiple Inheritance is Not Supported in Java

2 years ago

In this article, we'll be discussing what is use of inheritance and why multiple inheritance is not supported in Java . One of the main… Read More

  • Articles

C Program to Calculate Average, Geometric and Harmonic Mean

2 years ago

The C programs calculate geometric mean, average mean, and harmonic mean using their respective formulas. It simply applies these formula on the given input to… Read More

  • Articles

C Program to Find ASCII Value of a Character

2 years ago

The program accepts a character as an input and prints its corresponding ASCII value on output screen. The ASCII values are ranging from 0 to… Read More

  • Articles

C program to draw arc from 135 to 270 degree using Arc() function

2 years ago

Here, we will be using arc() function that is supported by graphics.h header file. It takes 5 arguments. First two arguments are the coordinates of… Read More

  • Articles

C Program To Check whether Triangle is Equilateral, Isosceles or Scalene

2 years ago

The program determines the type of triangle based on the input provided by a user. A triangle can be broadly classified according to the length… Read More

  • Articles

Program to Print Histogram in C

2 years ago

The program accepts an array as input and prints a histogram. It uses srand() method for random data creation ranging from 0 to 20 elements.… Read More

  • Articles

C Program to Convert Minutes into Hours and Minutes

2 years ago

The program converts minute to hours & minute format and prints the result on the output screen. It uses basic formula for converting the given… Read More