//Problem-4 /*Suppose you are planning to make a simple calculator. Your calculator has four functions - add(),substract(),multiply(),divide(). Each of these functions takes two ploating point numbers as input and returns the result after applying the corresponding operation. Scan different values from the user and test these four functions with these input.*/ #include #include float add(float x, char ch, float y) { float ans=x+y; return ans; } float substract(float x,char ch, float y) { float ans=x-y; return ans; } float multiply(float x,char ch, float y) { float ans=x*y; return ans; } float divide(float x,char ch, float y) { float ans=x/y; return ans; } int main() { float x, y; char ch; float ans; printf("Enter the value of x: "); scanf("%f",&x); printf("Enter the value of y: "); scanf("%f",&y); printf("Choose operator to perform(+,-,*,/): "); scanf("%c",&ch); switch(ch) { case '+': add(x, ch, y); break; case '-': substract(x, ch, y); break; case '*': multiply(x,ch, y); break; case '/': divide(x, ch, y); break; default: return 1; } printf("%f %c %f %f ",x,ch,y,ans); return 0; } আমি চাচ্ছি ইউজার থেকে অপারেটর সহ ইনপুট নিতে,,এই কোডটা রান হচ্ছে বাট অপারেটর ইনপুট নিতে পারছিনা,, ভাইয়া সময় পেলে একটু দেখবেন
bhaia, 4 number problem ta to void diye o kora jae. void function scanf diye input niye sum/multiply kore printf kore deya jae. then main function theke jodi call kori ektu explain korben?
ভাইয়া,আমার একটা প্রশ্ন ছিল... আমরা সাধারণত int data type এর ফাংশন কল করলে শেষে একটা int return করি(return 0) কিন্তু আমি কোড করে দেখেছি যে return কল না করলেও কাজ করে তবে সেটা output দিতে একটু সময় নেয়......তবে প্রোগ্রাম রান হয়// প্রশ্নটা হচ্ছে return ছাড়াই যদি কাজ হয় তাহলে return করার দরকার কি? ৷ return এর অন্য কোনো বিশেষ বৈশষ্ট আছে?
sir 2 no. Q ei vabe code korce result same hobe? #include int input_number(a){ if(a%2 == 0) { printf("even number"); } else{ printf("odd"); } return 0;} int main(){ input_number(33); return 0;} // show result odd
vai ami beginner. Kono kichu return korbe na eta bujhlam na.Return jodi na kore tahole kivabe kono kichu output hisebe pelam?please help me to understand.
amar division ta 0 hecche: #include float add(float x, float y) { return x + y; } float substract(float x, float y) { return x - y; } float multiply(float x, float y) { return x * y; } float divide(float x, float y) { return x / y; } int main() { float a,b; printf("Give me some floating type values: "); scanf("%f%f",&a,&b); float add_result = add(a,b); float substract_result = substract(a,b); float multiply_result = multiply(a,b); float divide_result = divide(a,b); printf("The result of add is: %f The result of substraction is: %f The result of multiply is: %f The result of divide is: %d ", add_result, substract_result,multiply_result,divide_result); return 0; }
khub valo laglo sikhe bhaiya...love from jadavpur university(india)
❤❤❤thank you so much ato video dekhar pore eitai sob ceye valo legeche
Thanks. Please Subscribe if you haven't already.
assalamualaikum sir...apni onek valo code bujhan...apnake onek dhonnobad ei type er video er jonno
thanks
Sir you are great 🙏🏻 thanks sir 🙏🏻❤️❤️❤️
Thanks sir
Thanks vai😍
Thanks a lot, brother
9:04 if we want to input a minus value then what should we do here....for example -50.
Is it possible?
মাশাআল্লাহ
❤❤
//Problem-4
/*Suppose you are planning to make a simple calculator. Your calculator has four functions - add(),substract(),multiply(),divide(). Each of these functions takes two ploating point numbers as input and returns the result after applying the corresponding operation. Scan different values from the user and test these four functions with these input.*/
#include
#include
float add(float x, char ch, float y)
{
float ans=x+y;
return ans;
}
float substract(float x,char ch, float y)
{
float ans=x-y;
return ans;
}
float multiply(float x,char ch, float y)
{
float ans=x*y;
return ans;
}
float divide(float x,char ch, float y)
{
float ans=x/y;
return ans;
}
int main()
{
float x, y;
char ch;
float ans;
printf("Enter the value of x:
");
scanf("%f",&x);
printf("Enter the value of y:
");
scanf("%f",&y);
printf("Choose operator to perform(+,-,*,/):
");
scanf("%c",&ch);
switch(ch)
{
case '+':
add(x, ch, y);
break;
case '-':
substract(x, ch, y);
break;
case '*':
multiply(x,ch, y);
break;
case '/':
divide(x, ch, y);
break;
default:
return 1;
}
printf("%f %c %f %f
",x,ch,y,ans);
return 0;
}
আমি চাচ্ছি ইউজার থেকে অপারেটর সহ ইনপুট নিতে,,এই কোডটা রান হচ্ছে বাট অপারেটর ইনপুট নিতে পারছিনা,,
ভাইয়া সময় পেলে একটু দেখবেন
Thanks
bhaia, 4 number problem ta to void diye o kora jae. void function scanf diye input niye sum/multiply kore printf kore deya jae. then main function theke jodi call kori
ektu explain korben?
vaiya Recursive er upor vedio hole vlo hoto
Sir,
Computer Fundamentals ear jonno apnar kono vedio sajano ace🤔?
❤
#include
main(){
sayhi();
return 0;
}
void sayhi()
{
printf("Hi!
");
}
ami to start e " void sayhi()" declare korinai tao to run korlo.
Hi Mursalin, Thanks for pointing it out. I think your compiler is handling it in a smart way. Some compiler didn't support it earlier.
ভাইয়া,আমার একটা প্রশ্ন ছিল...
আমরা সাধারণত int data type এর ফাংশন কল করলে শেষে একটা int return করি(return 0)
কিন্তু আমি কোড করে দেখেছি যে return কল না করলেও কাজ করে তবে সেটা output দিতে একটু সময় নেয়......তবে প্রোগ্রাম রান হয়//
প্রশ্নটা হচ্ছে return ছাড়াই যদি কাজ হয় তাহলে return করার দরকার কি? ৷ return এর অন্য কোনো বিশেষ বৈশষ্ট আছে?
9:21
sir 2 no. Q ei vabe code korce result same hobe?
#include
int input_number(a){
if(a%2 == 0)
{
printf("even number");
}
else{
printf("odd");
}
return 0;}
int main(){
input_number(33);
return 0;}
// show result odd
nc
vai ami beginner. Kono kichu return korbe na eta bujhlam na.Return jodi na kore tahole kivabe kono kichu output hisebe pelam?please help me to understand.
Bhai Apni C Ar Boss
amar division ta 0 hecche:
#include
float add(float x, float y)
{
return x + y;
}
float substract(float x, float y)
{
return x - y;
}
float multiply(float x, float y)
{
return x * y;
}
float divide(float x, float y)
{
return x / y;
}
int main()
{
float a,b;
printf("Give me some floating type values:
");
scanf("%f%f",&a,&b);
float add_result = add(a,b);
float substract_result = substract(a,b);
float multiply_result = multiply(a,b);
float divide_result = divide(a,b);
printf("The result of add is: %f
The result of substraction is: %f
The result of multiply is: %f
The result of divide is: %d
", add_result, substract_result,multiply_result,divide_result);
return 0;
}
2023
sir .plz ,upload new video
#include
void even_or_odd(int n)
{
if (n % 2 == 0)
{
print("EVEN
");
}
else
{
printf("ODD
");
}
}
int main()
{
even_or_odd(10);
return 0;
}
*** Sir eita error dekhacche keno?*** Ektu please bolen kindly!
You have a problem in slash/. You are using\ - that is wrong.
if(n % 2 == 0);
Question: 2
if anybody want number from user:
#include
void even_or_odd (int x)
{
if(x % 2 == 0)
{
printf("Even
");
}
else
{
printf("Odd
");
}
}
int main()
{
int y;
printf("Enter your number: ");
scanf("%d",&y);
even_or_odd (y);
return 0;
}
Sir, you are great 🙏🏻 thanks sir 🙏🏻❤❤❤