C Program to Sort Array in Descending Order

In this tutorial, i am going to show you how to sort array in descending order with the help of standard method and function in c programs. All C Programs to Sort Array in Descending Order C Program to Sort Array in Descending Order using Standard Method #include <stdio.h> int main() { int a[10000],i,n,j,temp; printf(“Enter … Read more

C Program to Print Pascal Triangle

In this tutorial, i am going to show you how to print pascal triangle with the help of for loop and recursion in c programs. All C Programs to Print Pascal Triangle in C C Program to Print Pascal Triangle using For Loop #include <stdio.h> long Factorial(int); int main() { int i, Number, j; printf(“Enter … Read more

C program to Find Grade of a Student

In this tutorial, i am going to show you how to find the grade of a student in c program. C Program to Find Grade of a Student Using If Else #include <stdio.h> int main() { float marks, Total, Percentage; printf(” Please Enter Marks out of 500 :-” ); scanf(“%f”, &marks); Percentage = (marks / … Read more