C Programs
C program swap two number using third variable
In this tutorial, we are going to learn new program which is Swapping of two numbers and most commonly used in exams or in interviews. Implementation of this program is very simple. What is swapping: Swapping of two numbers means replacing the numbers. How to swap two numbers using the third variable? For swapping number first we have 2 …
C Program to Print Odd Numbers till N
In this tutorial, we are going to learn new program which is to print the odd numbers till N. What’s it mean by an odd number? Any number which is divided by two and gives the remainder as 1 then that never is referred to an odd number. How will you check number is odd? For checking …
Even or odd program in c
In this tutorial, we are looking new program which is to find an even or odd number. In this program, we first have a number and we check whether that number is Even or odd programmatically. Definition of odd and even numbers What is even number? Any number which is divided by 2 and gives …
Print alphabets a to z in c
In this tutorial, we are going to see a program to Print alphabets a to z. For this program you only require to know the following c programming concept : Looping in c: for loop, while loop, do while loop Logic: As we know the English alphabets Starr from a and ends with z. So using for …