Check Leap year program in C Language
Introduction: In this article, We will look at the Leap year program in C Language. We also look at the...
Introduction: In this article, We will look at the Leap year program in C Language. We also look at the...
Introduction: This program is for Calculating the Perimeter and Area of a Rectangle in C programming Langauge. most of us...
Program : vim welcome.c #include<stdio.h> int main() { printf(“Hello world n”); printf(“Welcome to...
Description: Find the grade of a student by reading marks or by taking Percentage. Here we are assuming greater than...
Program : #include<stdio.h> int main(void) { int var; printf(“Size of int=%un”,sizeof(int)); printf(“Size of float=%un”,sizeof(float)); printf(“Size of var=%un”,sizeof(var)); printf(“Size of...
Description : To convert Centigrade to Fahrenheit, multiply by 1.8 and add 32 degrees. Algorithm: Step 1 : startStep 2...
Program to understand type conversion in C Language : In this program, We are going to look at the Type...
Introduction: In the previous blog post, we discussed Relational operators in C Language. In today’s article, we are going to...
In this post, We are going to discuss the Simple Interest program in C Language. Before writing the program, Here...
Relational Operators example Program : #include<stdio.h> int main(void) { int a,b ; printf(“Enter values for a and...
Introduction: We have discussed the increment operators in our previous article, Here is another example to demonstrate the functionality of...