C Program to Multiply Two Floating-Point Numbers

In this tutorial, i am going to show you how to multiply two floating-point numbers in the c program. Algorithm to Multiply Two Floating Point Numbers Follow the below given algorithm to write a program to multiply two floating point numbers; as follows: C Program to Multiply Two Floating-Point Numbers #include <stdio.h> int main(){ float … Read more

C Program for Simple Calculator

In this tutorial, i am going to show you how to create simple calculator program in c programming language using switch case and if else statement. All C Programs for Simple Calculator C Program for Simple Calculator using Switch Case #include <stdio.h> int main() { char op; double first, second; printf(“Enter an operator (+, -, *, /): … Read more

Learn C Programming Language

C programming tutorial; Through this tutorial, you will learn c programming with examples. C language is a popular and widely used Programming language and The origin of C is closely tied to the development of the Unix operating system, originally implemented in assembly language on a PDP-7 by Dennis Ritchie and Ken Thompson, incorporating several ideas … Read more

C program to Sort Names in Alphabetical Order

In this tutorial, i am going to show you how to sort names in alphabetical order in c program using algorithm. Algorithm to Sort Names in Alphabetical Order Follow the below given algorithm to write a program to sort names in alphabetical orders; as follows: C program to Sort Names in Alphabetical Order #include <stdio.h> … Read more

C Program To Merge Two Arrays

In this tutorial, i am going to show you how to merge two arrays with the help of standard method and function in c programs. All C Programs To Merge Two Arrays C Program To Merge Two Arrays using Standard Method #include <stdio.h> print(int *a,int n) { int i; for(i=0; i<n; i++) { printf(“%d “,a[i]); … Read more