C / C++
In this section, we share here all the code in C, C++ computer language. C, CPP++ are the two basic and important languages for placement, interview preparation.
4 Important Coding Problems Based on Numbers in C
Mathematics is used everywhere ranging from application development to solving complex problems in business. When you are looking for a job, many companies not only test your...
Program to Check and Print All Perfect Numbers in the Given Range
This is one of the popular number questions asked in interviews. There are many students who are interested to become software developers so the best way to crack the SDE...
Event Handling in C#, Python and C | Example Explained
Events handling is the most important "code construction" enabling the individual parts/modules of a program (application) to communicate among themselves. Do we need such...
Difference Between C and OOPs Languages (C++/C#/Python)
Why C? C language has been the most important programming language for decades. Actually, for the embedded systems it is still the best option. It is the most efficient...
[Solved] Find Remainder without using Modulus Operator in Python, C and Java?
The remainder is the value remains after dividing one number by another number. Example 1: Number: 8 Divisor: 3 Reminder: 2 Example 2: Number: 33 Divisor: 4 Reminder:...
Dynamic Programming and Recursion | Difference, Advantages with Example
Do you want to learn dynamic programming recursion in detail? Recursion and dynamic programming are two important programming concept you should learn if you are preparing...
6 Different Types of Recursion in C Explained with Programming Example
After learning the concept of functions and how they are executed, it is a time to learn recursion. In this tutorial, you will learn all the basic of recursion in the data...
Types of Function in C Programming Example | Call by Value vs Call by Reference
Do you know, What are the different types of functions in C? How to declare, define and call the function in C? What is the difference between call by value and call...
Difference Between do, do-while and for loop | Syntax and Coding Example
Table of Contents What is the loop in C? Different Looping Statements in C while do-while for loop Difference Between while, do-while and for loop in...