How to convert days into years months and weeks in C program || Free Code Center

convert days into years

How to convert days into years, months and weeks in C program Convert day in the year in C Example 1: #include <stdio.h> int main() { double days,year; printf(“Enter days =”); scanf(“%lf”,&days); year=days/365; printf(“Total year is=%.3lf”,year); } Example 2: How to convert days into years, months and weeks in C program #include <stdio.h> void convertDays(int … Read more

Find the compound of interest in C || C Program For Compound Interest

Find the compound of interest in C

Find the compound of interest in C At Free Code Center we understand the significance of creating exceptional content that not only informs but also captivates readers. In today’s digital age, where search engine rankings play a crucial role in attracting organic traffic, it is vital to craft content that outranks other websites. In this … Read more

The sum of n number of odd natural number in C | Free code Center

The sum of n number of odd natural number in C

The sum of n number of odd natural number in C Write a C program to display the n terms of odd natural numbers and their sum.like: 1 3 5 7 … n #include<stdio.h> void main () { int i,n,odd=0,sum=0; scanf(“%d”,&n); for(i=1;i<=n;i++){ if(i%2!=0){ printf (“%d”,i); sum=i+n; } } printf(“\nThe odd numbers are :%d\n”,i); printf(“The Sum … Read more

How to compare ASCII values in C

How to compare ASCII values in C

How to Compare ASCII Values in C Programming ASCII values are the numeric representations of characters in the C programming language. One of the most common tasks for programming is comparing these values, often if this work involves operations on the strings or characters. Thus, in this tutorial, we will find out how to efficiently … Read more

কিভাবে প্রোগ্রামিং শুরু করবেন | How to start programming

কিভাবে প্রোগ্রামিং শুরু করবেন

কিভাবে প্রোগ্রামিং শুরু করবেন বাংলায় কিভাবে প্রোগ্রামিং শুরু করবেন নিচের ধাপগুলি অনুসরণ করতে পারেন: ১. একটি প্রোগ্রামিং ভাষা নির্বাচন করুন: প্রোগ্রামিং শুরু করতে আপনাকে একটি প্রোগ্রামিং ভাষা নির্বাচন করতে হবে। অনেকগুলি প্রোগ্রামিং ভাষা রয়েছে, যেগুলির প্রতিটির নিজস্ব সুবিধা এবং উদ্দেশ্য রয়েছে। প্রাথমিক মানে বাংলায় প্রোগ্রামিং করতে পারেন Python, JavaScript এবং Ruby। আপনার লক্ষ্য এবং আগ্রহ … Read more

Sum of Series in C | Efficient Techniques for Finding the Sum of a Series in C Programming | C programming examples

Sum of Series in C

Sum of Series in C programming Introduction In this article, we will explore efficient techniques for finding the sum of series in C programming. Calculating the sum of a series is a common task in programming, and it is essential to have a solid understanding of the various methods available to optimize performance and accuracy. … Read more

C program to calculate the area and circumference of a circle-9

C program to calculate the area and circumference of a circle

C program to calculate the area and circumference of a circle Introduction Understanding the concepts of area and circumference is fundamental when working with circles. Whether you are a student learning C programming or a professional developer seeking to enhance your skills, this guide will serve as a valuable resource. We will delve into the … Read more

Calculator program in C ||Simple calculator program in C || Free Code Center

Calculator program in c

Calculator program in C #include <stdio.h> int main () { char operator; printf(“enter the operator (+ – * /)\n press A for Area of circle\n press B for circumference of circle \n press C area of rectangle\n”); scanf(“%c”,&operator); double first,second,area; printf(“enter two numbers one by one= “); scanf(“%lf %lf”,&first,&second); if (operator==’+’) { printf(“The sum is=%.3lf”,first+second); … Read more

Program to find area of square in C

Program to find area of square in c

Program to find the area of the square in C || Find area of square in C Introduction How to Calculate the Area of a Square [Step-by-Step]How to Calculate the Area of a Square [Step-by-Step]CategoriesRegularHow to Calculate the Area of a Square [Step-by-Step]In this post, we are going explain how you can solve area measures … Read more

C Program to Calculate area of right angle triangle-6

C Program to Calculate area of right angle triangle

C Program to Calculate area of right angle triangle Introduction Welcome to our comprehensive guide on calculating the area of a right-angled triangle. In this article, we will provide you with a step-by-step approach to accurately determine the area of a right-angled triangle. By following the methods outlined below, you will gain a solid understanding … Read more