Browsing tag

C examples

Display reverse of a string using loops in C language

Display reverse of a string using loops in C language In this tutorial, we will discuss the concept of Display reverse of a string using loops in C language In this post, we are going to learn how to reverse every word of the given string by the user and display the reversed string as…

C Program for calculating factorial of a number using recursion

C Program for calculating the factorial of a number using recursion In this tutorial, we will discuss the C  Program for calculating the factorial of a number using recursion There are many ways to calculate factorial using C language and one of this given below – Using the recursive function in C language   In…

Factorial calculation of a number using the pointer in C

Factorial calculation of a number using the pointer in C In this tutorial, we will discuss the concept of Factorial calculation of a number  using the pointer in C programming language In this post, we will learn how to calculate factorial of a number using the pointer in C language and go through the given…

Example program to check whether a Number is Prime or Not in C

Example  program for check whether a Number is Prime or Not in C In this article, we will discuss the concept of the Example  program to check whether a Number is Prime or Not in C programming language In this post, we are going to learn how to check whether a number is prime or…

C code to Alphabet triangle pattern using do-while loop

C code to Alphabet triangle pattern using the do-while loop In this article, we will discuss the concept of C code to Alphabet triangle pattern using the do-while loop in C programming language We can print various type of number, asterisk, binary patterns using for, while and do-while loop in C language In this post,…

C program for print solid rectangle and square star pattern

C program for print rectangle and square star pattern In this article, we will discuss the concept of C program for Display the solid rectangle or square star pattern. In this post, we are going to learn how to write a program to print  solid rectangle or square star pattern in  C programming language using…

Print Hollow rectangle and square star pattern in C

Print Hollow rectangle and square star pattern in C In this article, we will discuss the concept of  Program to Print Hollow rectangle or square star pattern in C programming language In this post, we are going to learn How to write a C program to print  Hollow rectangle or square star pattern using for…

Find odd or even number using switch statements in C

Find the odd or even number using switch statements in C In this tutorial, we will discuss the concept of the find the odd or even number using switch statements in C language. In this post, we are going to learn how to find odd or even number using switch statements in C programming language…