C Program to Find nPr

C program to find npr; In this tutorial, i am going to show you how to find npr in c program. First of all, i will show you know about npr; is as follow: The nPr is the permutation of arrangement of ‘r’ objects from a set of ‘n’ objects, into an order or sequence. The … Read more

C Program to Reverse a String

In this tutorial, i am going to show you how to reverse a string in a c program with the help of for loop, function, and pointer. All C Programs and Algorithm to Reverse a String in C Algorithm to Reverse a String Follow below given algorithm to write a program to reverse a string; as follows: … Read more

C Program to Find Area of Rhombus

In this tutorial, i am going to show you how to find or calculate area of rhombus with the help of standard formula, function and pointer in c programs. All C Programs and Algorithm to Find Area of Rhombus Algorithm to Find Area of Rhombus Just follow the below given algorithm to write a program … Read more

C Program to Print Plus Star Pattern

In this tutorial, i am going to show you how to print plus star pattern program in c with the help of for loop and while loop. All C Programs to Print Plus Star Pattern C Program to Print Plus Star Pattern using For Loop #include<stdio.h> int main() { int i, j, rows; printf(“Enter Plus … Read more