ADVERTISEMENT
Programming
Learn the fundamentals of programming with our comprehensive tutorials. We offer step-by-step guidance for beginners to build a strong foundation in coding, along with advanced topics for experienced developers.
Learn C language, C++, C sharp, Visual basic and programming today!
Generate Table of Given Number
This program takes user input for a number and the range for the multiplication table, validates the input, and then prints the multiplication table within the specified range if the input is valid. If the input is not valid, it provides an error message.
Celsius to Fahrenheit
Celsius to Fahrenheit
Calculate Gross Salary
This code calculates and displays various components of an employee’s salary, including dearness allowance, house rent allowance, and provident fund deduction. It then calculates the gross salary based on these components and the user-provided basic pay.
Calculate Bonus On Salary
This code determines the bonus and updated salary for an individual based on their gender and initial salary. It demonstrates the use of conditional statements in C for making decisions based on user input.
Multiplication By Addition
This code performs integer multiplication using repeated addition and subtraction. It handles both positive and negative values of ‘a’ and ‘b, ensuring that the result is accurate.
Convert Given Days to Years, Week and Days
This code takes a user input of a total number of days and breaks it down into the equivalent number of years, weeks, and days. It performs the calculations and provides the result in a human-readable format.
Given Year Is Leap Year Or Not
This C program checks whether a given year is a leap year or not. A leap year is a year that is evenly divisible by 4, except for years that are divisible by 100 but not by 400.
Swap Two Numbers Without Using 3rd Variable
This C program takes two integer inputs, ‘a’ and ‘b’, and swaps their values without using a temporary variable.
Swap Two Numbers Using 3rd Variable
This C program takes two integer inputs, ‘a’ and ‘b’, and swaps their values using a temporary variable ‘c’.
Print Odd Numbers Till ‘N’
This C program takes an integer ‘n’ as input from the user and then prints all odd numbers from 1 to ‘n’.
Weather Given Number is Odd or Even
This C program determines whether a given integer is even or odd.
Alphabets from a to z
This C program prints the lowercase English alphabet in a continuous sequence.
Print Alphabets From A to Z
This C program prints characters in uppercase from ‘A’ to ‘Z’ one character per line.
Print Numbers From 1 to 100
This C program prints the numbers from 1 to 100.
Hello World
This code is a minimal “Hello World” program written in C. Its primary purpose is to demonstrate the basic structure of a C program and how to display text on the screen.
What is C++ Programming?
C++ is a general-purpose, object-oriented programming language that was created by Bjarne Stroustrup in 1983 as an extension of the C language.
What is C Language?
Due to its popularity and flexible features, it was soon released for cross-platform use and quickly became commercialized. C is still commonly used in web development projects, and many popular languages, such as Java, PHP, and JavaScript have directly or indirectly syntax from C.
How to download and Install Dev C++ on windows
Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming languages. It was developed by Bloodshed Software, but is no longer being actively maintained. It includes a compiler, debugger, and an editor, among other features, and allows users to write and edit C and C++ code, and then compile and run that code on their computer. Dev-C++ is free to download and use, and is available for Windows operating systems. It is a popular choice for beginners learning to program in C and C++, due to its simplicity and ease of use.