R

Racovita Alexandru's Dev In Control

I am striving to help others understand programming in an
easy way

  • Rated2.3/ 5
  • Updated 6 Years Ago

Recent blog posts from Dev In Control


Increasing and decreasing orders
Increasing and decreasing orders
Hello! Today I am going to show you how to read n numbers from the keyboard and rearrange them in an increasing or decreasing order.I hope this  helps you! Enjoy! So,in order to do that you will neâ€...
6 Years Ago
BlogAdda
Arrays
Arrays
Hello! Today I am going to explain how arrays work and why they are so important in procedural programming. An array is a series of elements of the same type placed in contiguous memory locations t…...
6 Years Ago
BlogAdda
Check if a number is palindrome
Check if a number is palindrome
Hello! Today I am going to show you how to determine whether a number is a palindrome or not using a basic algorithm. First of all, what is a palindrome number? A palindrome number is a number that…...
6 Years Ago
BlogAdda
The greatest common divisor and the least common multiple
The greatest common divisor and the least common multiple
Hello! Today I am going to show you another basic algorithm. one that finds out the greatest common divisor and the least common multiple of two numbers using repetitive subtractions. Enjoy! #inclu…...
6 Years Ago
BlogAdda
Operators
Operators
Hello! Since almost any code requires operators and operators are one of the most important things in programming I thought I would make a post in which I am talking about them! Hope this helps you…...
6 Years Ago
BlogAdda
Compare two numbers
Compare two numbers
Hello! Today I am going to show you the algorithm for comparing two numbers and printing the result inside the console, it is fairly easy so there shouldn’t be any problems. #include
6 Years Ago
BlogAdda