Each class is more beautiful than the other... It's been 8 years and still these classes are precious like diamonds for beginners like us. May Allah reward you well in this world and in the hereafter, Ameen.
welcome vaiya :) video gula serially dekhar cesta korben tahole onek sohoj mone hobe... ei link e sobgula video serially deya aase 215 ti video (Oddhai 3,4,5) ua-cam.com/play/PLgH5QX0i9K3o8Y-CKhmyodbfHAc9VSVOv.html
We always declare variables sum=0 when we add number but why couldn’t we use it there? Will you explain brother? I have a doubt when we use variables sum=0 in addition and when we don’t need to require to use.
#include // input output library file int main() { // variable declearation int i; // using for lop for printing 1 to 10 number for (i = 1; i < 11; i=i+1) { printf("%d ", i); } return 0; }
#include // input output library file int main() { // variable declearation int number; // taking user input with command printf("Enter an integer: "); scanf("%d", &number); // true if number is less than 0 if (number < 0) { printf("You entered %d. ", number); } else{ printf("The if statement is easy."); } return 0; }
স্যার আমরা শিখেছিলাম মেইন ফাংশনের পরে লিখলে মেইন ফাংশনের আগে ফাংশনটার নাম লিখে দিয়ে যেতে হয়।কিন্তু এখন তো না লিখলেও কোড রান হচ্ছে।এর কারণটা যদি বুঝিয়ে বলতেন।
#include int main() { int num1,num2; printf("Enter two numbers : "); scanf("%d,%d",&num1,&num2); int rslt=sum(num1,num2); printf("Sum = %d",rslt); } int sum(int a,int b) { return a+b; } what is the problem in this code pls tell me anyone,it gives me wrong output
#include // input output library file int main() { // declare different types of data type variables int intType; float floatType; double doubleType; char charType; // sizeof evaluates the size of a variable printf("Size of int: %zu bytes ", sizeof(intType)); printf("Size of float: %zu bytes ", sizeof(floatType)); printf("Size of double: %zu bytes ", sizeof(doubleType)); printf("Size of char: %zu byte ", sizeof(charType)); return 0; }
আপনার সহজে বুঝানোর ক্ষমতাটা আল্লাহ আমাকেও দেন এই দুয়া করি ❤
Each class is more beautiful than the other...
It's been 8 years and still these classes are precious like diamonds for beginners like us. May Allah reward you well in this world and in the hereafter, Ameen.
Really, you are a great teacher...Your teaching skill is awesome!
love all of your videos...
সিলেবাস নিয়ে অনেক ঝামেলায় ছিলাম ভাই। আপনার ক্লাস দেখে এখন সাহস আসছে। Love you vai 🥰
Onk vlo bujechi... Accah vaia function er r kono class ase. Eita sara
vai apni osadharon ....ami 5 din dhore ata bujte parini jeta apni 15 minute a sikhalen
tkanks vaiya for giving such this video....and your teaching quality is so good
thank you sir...
may Allah give you all hapiness
Vaya..function er r koyekta video dile valo hoto..btw apnr bujhano khub valo lage..amr frndrk apnr ktha blsi.koyekjn apnr vdo dekhe niyomito. :)
thanks dear. I am happy cause you shared my videos with others.
lol
sir apnake onek donnobad sir onek sohoj bujanu hoyse ?🥰
আমার মনে হয় এর থেকে সহজ করে আর কেউ বুজাতে পারবে না, খুব সুন্দর করে বুজানো জন্য ধন্যবাদ স্যার.
everything is great !
Just try to improve the sound quality :)
Thank you Sir
Really are you great
very nice tutorial thanks a lot via...
welcome vaiya :)
video gula serially dekhar cesta korben tahole onek sohoj mone hobe...
ei link e sobgula video serially deya aase 215 ti video (Oddhai 3,4,5)
ua-cam.com/play/PLgH5QX0i9K3o8Y-CKhmyodbfHAc9VSVOv.html
love you bro
qsort() function niye ekta tutorial korte parle onek upokito hoitam.R vaia jodi somoy pan tahole PHP er tutorial korle onek sohoj e sikhte partam.
জাযাকুমুল্লাহু খাইরান
Dada video clear hole aro interesting hoy
#include // input output library file
int main() {
// variable declearation
int number1, number2, sum;
// taking input
printf("Enter two integers: ");
scanf("%d %d", &number1, &number2);
// calculating sum
sum = number1 + number2;
// show output
printf("%d + %d = %d", number1, number2, sum);
return 0;
}
Thanks #anisulislam sir!
We always declare variables sum=0 when we add number but why couldn’t we use it there?
Will you explain brother?
I have a doubt when we use variables sum=0 in addition and when we don’t need to require to use.
Nice brother
#include // input output library file
int main() {
// variable declearation
int i;
// using for lop for printing 1 to 10 number
for (i = 1; i < 11; i=i+1)
{
printf("%d ", i);
}
return 0;
}
Thanks vai
#include // input output library file
int main() {
//variable declearation
int number;
// command for taking user input
printf("Enter an integer: ");
// reads and stores input
scanf("%d", &number);
// displays output
printf("You entered: %d", number);
return 0;
}
Thank you vaiya.
Function niye aro kichu video diyen bhaia
Nice ...
#include // input output library file
int main() {
// variable declearation
double numberOne, numberTwo, product;
// taking input with user command
printf("Enter two numbers: ");
scanf("%f %f", &numberOne, &numberTwo);
// Calculating product
product = numberOne * numberTwo;
// %.2lf displays number up to 2 decimal point
printf("Product = %.4f", product);
return 0;
}
Thx sir
Sir Assalamualikum
thanks sir💜
welcome
vaiya function diye please video gulu creating koren coz..function bujteci na.
#include // input output library file
int main() {
// variable declearation
int number;
// taking user input with command
printf("Enter an integer: ");
scanf("%d", &number);
// true if number is less than 0
if (number < 0) {
printf("You entered %d.
", number);
}
else{
printf("The if statement is easy.");
}
return 0;
}
#include // input output library file
int main()
{
// variable declearation
int i,j;
// this is outer for loop
for(i=0; i
vaiya apnake fb te request dilam accept korle valo hoto r vaiya c programming a 241 ta video show korleo 200 ta open hoy but why?
getch,return o কখন দিতে হয়।অনেক program এ দুটির একটিও নাই কেন? plz ans me.
স্যার আমরা শিখেছিলাম মেইন ফাংশনের পরে লিখলে মেইন ফাংশনের আগে ফাংশনটার নাম লিখে দিয়ে যেতে হয়।কিন্তু এখন তো না লিখলেও কোড রান হচ্ছে।এর কারণটা যদি বুঝিয়ে বলতেন।
Void কি কি কাজে ব্যবহার করা হয় যদি বলতেন?
❤⚡
ভাইয়া void main() দিয়ে কি বুঝানো হয়। প্লিজ যে কেউ রিপ্লায় দেন
void means khali ,null or zero that's it.
return type r data type ki same?
Return type hisabe data type use korte hoy sei khetre dui tai same
ডেসিমেল হেক্সাডেসিমেল এর ভিডিও গুলা আমি দেখেছিলাম
কিন্তু এখন ভিডিও গুলো এখানে নেই কারন কি??
plzzz bolen vaiya
ekhono aache, tobe video gulo punorai sajiyesi, tai nij daitte khuje nin
hmm tnQ tobe apni full c program er link ta jodi ditan onk help hoto
ua-cam.com/play/PLgH5QX0i9K3pCMBZcul1fta6UivHDbXvz.html
wow
Bro give me your online web Devolapment training institute website link I want to join
vaiya main function ar por () use kora hoy kno
main()
মেইন ফাংশন এর ভিতর অন্য কোন ফাংশন তৈরি করা যায় কিনা?
ji jay. jemon printf(" ") e ekta function.
void ta kibhabe kaj korlo bujhlam nah
vaia video ta zapsa hoye gese
#include
int main()
{
int num1,num2;
printf("Enter two numbers : ");
scanf("%d,%d",&num1,&num2);
int rslt=sum(num1,num2);
printf("Sum = %d",rslt);
}
int sum(int a,int b)
{
return a+b;
}
what is the problem in this code pls tell me anyone,it gives me wrong output
%d er pore comma hobe na
Sir apnar contact no ta ektu diben plz amar programing related kichu problem ache
#include // input output library file
int main() {
// declare different types of data type variables
int intType;
float floatType;
double doubleType;
char charType;
// sizeof evaluates the size of a variable
printf("Size of int: %zu bytes
", sizeof(intType));
printf("Size of float: %zu bytes
", sizeof(floatType));
printf("Size of double: %zu bytes
", sizeof(doubleType));
printf("Size of char: %zu byte
", sizeof(charType));
return 0;
}
#include // input output library file
int main() {
// variable declearation
int number;
// taking input
printf("Enter an integer: ");
scanf("%d", &num);
// true if num is perfectly divisible by 2
if(num % 2 == 0)
printf("%d is even.", num);
else
printf("%d is odd.", num);
return 0;
}