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

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

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

Tic Tac Toe game in C || CPP

Tic Tac Toe game in CPP

Tic Tac Toe game in CPP #include<iostream> using namespace std; char board[3][3] = {{‘1′,’2′,’3’} ,{‘4′,’5′,’6’} ,{‘7′,’8′,’9’}}; int choice; char a[10];//NAME PLAYER 1 char b[10];//NAME PLAYER 2 char row,column; char turn = ‘X’; bool draw = false;//1ST FALSE BECAUSE GAME NOT DRAW int count; void display_table(){ system(“cls”); cout<<“\t\t\t\t\t\tTic Tac Toe\n\n”<<endl; cout<<“\t\t\t”<<a<<“[X]”<<“\t\t\t\t\t”<<b<< “[O]\n\n”<<endl;//Tic Tac Toe game in … Read more

Fahrenheit to Centigrade in C Program

Fahrenheit to centigrade in C program

Fahrenheit to Centigrade in C program .Unlocking the Magic of Fahrenheit to Centigrade Conversion in C Program Fahrenheit to centigrade in C program Welcome to our comprehensive guide on Fahrenheit to Centigrade conversion in the C programming language. In this article, we will delve into the intricacies of this conversion process and provide you with … Read more

Stones on the Table Codeforces Solution in C++ || Codeforces 266A

Stones On The Table Codeforces Solution

Question Stones on the Table Codeforces Solution in C++ Problem:There are n stones on the table in a row, each of them can be red, green or blue. Count the minimum number of stones to take from the table so that any two neighboring stones had different colors. Stones in a row are considered neighboring … Read more

Hello World Programming in C 2025

hello world programming in c

Hello World Programming in C is the first step in learning C. Start coding today and understand the basics of C programming with this simple guide #include<stdio.h> int main() { // Printf() shows the string enclosed in quotation marks. printf(” Hello, World!”); printf(” \n”); return 0; } OUTPUT: Hello, World! Knowing the code for #include … Read more

How to write a C program to find and sum all numbers divisible by 9 between 100

How to write a C program to find and sum all numbers divisible by 9 between 100

How to write a C program to find and sum all numbers divisible by 9 between 100 Introduction This is a complete guide on how to write a C program that identifies all numbers between 100 to N (input by user ) and finds the sum of each number which is divisible by 9. In … Read more

How to Convert Days Into Years, Months and Weeks in C program

convert days into years

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 days, int *years, int *months, int *weeks) { *years = days / … Read more

Factorial Program in C: An In-Depth Guide

factorial program in c

Factorial Program in C Introduction While they may appear straightforward, factorials have a major role in both programming and mathematics. If you are dealing with combinatorial issues or probability calculations, or even some data science algorithms; being able to compute factorials swiftly is very important. This article will take us through the depths of factorials, … Read more

Calculator Program in C – Simple

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); } else … Read more

Beecrowd 1174 Array Selection I Solution in C/Cpp

Question link Beecrowd 1174 – Array Selection I Solution in C #include <stdio.h> int main() { double A[100];int i; for(i=0;i<100;i++){ scanf(“%lf”,&A[i]); } for(i=0;i<100;i++){ if(A[i]<=10){ printf(“A[%d] = %.1lf\n”,i,A[i]);//Beecrowd 1174 – Array Selection I } } return 0; } Beecrowd 1174 – Array Selection I Solution in CPP #include <iostream> #include <iomanip> using namespace std; int main() … Read more