In this tutorial, we will write a C program to count vowels and consonants in a given String using Pointer. To understand this program you… [Read More]
C Program to Print String using Pointer
In this tutorial, we will write a C program to print a String character by character using a pointer variable. To understand this program you… [Read More]
C Program to Swap two numbers using Pointers
In this tutorial we will write a C program to swap two numbers using Pointers. We have already covered how to swap two numbers without… [Read More]
C program to create, initialize and access a pointer variable
In this tutorial, we will write a C program to create, initialize and access a pointer variable. To learn the basics of pointer refer my… [Read More]
C Program to find the Sum of First n Natural numbers
Program to find the sum of first n natural numbers. We will see two C programs to calculate the sum of natural numbers. In the… [Read More]
C Program to check whether a Character is an Alphabet or not
In this tutorial, you will learn how to write a C program to check whether a character entered by user is an alphabet or not…. [Read More]
C Program to check Leap Year
This program checks whether the input year is leap year or not. Example: Program to check Leap Year You can check whether a year is… [Read More]
C Program to Check whether an Alphabet is Vowel or Consonant
This program checks whether the input character is vowel or consonant. Example: Program to check Vowel or Consonant This program takes the character value(entered by… [Read More]
C Program to Swap two numbers
We will see two programs to swap two numbers. In the first program we are swapping two numbers using a temporary variable and in the… [Read More]
C Program to find the Size of int, float, double and char
This program finds the size of data types such as char, int, float, double. Example: Program to find the size of data types in C… [Read More]
C Program to Convert Decimal Number to Binary Number
This program converts a decimal number to an equivalent binary number. Example: Program to convert Decimal to Binary In this program, we have created a… [Read More]
C Program to Convert Decimal to Octal Number
This program converts the input decimal number to an octal number. Example: Program to convert decimal to octal In this program, we have created a… [Read More]
C Program to Convert Octal Number to Decimal Number
This program converts an octal number to an equivalent decimal number. Example: Program to Convert Octal to Decimal In this program, we have created a… [Read More]
C Program to Convert Octal Number to Binary Number
This program converts an octal number to a binary number using a user defined function. Example: Program to convert octal to binary In this program… [Read More]
C Program to Convert Binary to Octal Number System
This C Program converts a binary number to an equivalent octal number. Example: Program to convert Binary to Octal In this program, user is asked… [Read More]