Latest stories

  • in

    C program to reverse numbers

    Popular

    C program to reverse numbers and print them on the screen. For example, if the input is 12345, we will print the output like 54321. In the program, we use the modulus operator (%) to obtain the digits of the number. To invert the number write its digits from right to left (reverse). C program […] More

  • in

    C Program to Find Sum of series 1²+2²+3²+…+n²

    Hot Popular

    Program to find the sum of series 1²+2²+3²+.+n² in C; Through this tutorial, we will learn how to find the sum of series 1²+2²+3²+….+n² using for loop in C Programming Language. C Program to Find Sum of series 1²+2²+3²+…+n² Finding the sum of a series of numbers is a common task in mathematics. In this […] More

  • in

    Writing Your First Program in C

    Popular

    Let’s print “Hi” In your first computer program, let’s print something on the screen to display. How can we instruct a computer to print “Hi” on the screen in simple English? Did something similar come to your mind? Now, let’s think from a computer’s perspective and do a few changes to our command. Round Brackets […] More

  • in

    Introduction to C Programming

    Popular

    C Programming

    What is C? C is a programming language that lets us give a computer very specific commands. C was invented in 1972. It’s one of the oldest languages to be used even today!. It is one of the most widely used programming languages in the world. It has influenced many popular languages, mainly C++. But […] More