সি প্রোগ্রামিং - ২১ঃ Function Exercise in C | Bangla Coding Tutor | C Programming Bangla Tutorial

Поділитися
Вставка
  • Опубліковано 31 гру 2024

КОМЕНТАРІ • 36

  • @sayandeepsarkarju_me7821
    @sayandeepsarkarju_me7821 4 роки тому +6

    khub valo laglo sikhe bhaiya...love from jadavpur university(india)

  • @সাবিহা-ড৩ঞ

    ❤❤❤thank you so much ato video dekhar pore eitai sob ceye valo legeche

  • @nishatvasker7397
    @nishatvasker7397 4 роки тому +1

    assalamualaikum sir...apni onek valo code bujhan...apnake onek dhonnobad ei type er video er jonno

  • @chaitalikhanra7719
    @chaitalikhanra7719 3 роки тому +2

    Sir you are great 🙏🏻 thanks sir 🙏🏻❤️❤️❤️

  • @Rrvevevrhh
    @Rrvevevrhh 3 місяці тому

    Thanks sir

  • @SaddamHossain-px9ks
    @SaddamHossain-px9ks 3 роки тому +1

    Thanks vai😍

  • @onabill155
    @onabill155 5 років тому +1

    Thanks a lot, brother

  • @sunayansarkar649
    @sunayansarkar649 6 місяців тому

    9:04 if we want to input a minus value then what should we do here....for example -50.
    Is it possible?

  • @ArifulIslam-pu1ys
    @ArifulIslam-pu1ys 11 місяців тому

    মাশাআল্লাহ

  • @ChandonaRani-v9z
    @ChandonaRani-v9z 25 днів тому

    ❤❤

  • @sultanularfin78
    @sultanularfin78 2 роки тому +1

    //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;
    }
    আমি চাচ্ছি ইউজার থেকে অপারেটর সহ ইনপুট নিতে,,এই কোডটা রান হচ্ছে বাট অপারেটর ইনপুট নিতে পারছিনা,,
    ভাইয়া সময় পেলে একটু দেখবেন

  • @timdavid5638
    @timdavid5638 Рік тому

    Thanks

  • @fahimmahmud4909
    @fahimmahmud4909 2 роки тому

    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?

  • @mdnabil4290
    @mdnabil4290 2 роки тому

    vaiya Recursive er upor vedio hole vlo hoto

  • @hafezmdnoman6998
    @hafezmdnoman6998 Рік тому

    Sir,
    Computer Fundamentals ear jonno apnar kono vedio sajano ace🤔?

  • @AbidurRahaman-q2k
    @AbidurRahaman-q2k Рік тому

  • @mursalin3698
    @mursalin3698 4 роки тому +3

    #include
    main(){
    sayhi();
    return 0;
    }
    void sayhi()
    {
    printf("Hi!
    ");
    }
    ami to start e " void sayhi()" declare korinai tao to run korlo.

    • @BanglaCodingTutor
      @BanglaCodingTutor  4 роки тому +3

      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.

  • @universal-juniorexcurtionist
    @universal-juniorexcurtionist 4 роки тому +1

    ভাইয়া,আমার একটা প্রশ্ন ছিল...
    আমরা সাধারণত int data type এর ফাংশন কল করলে শেষে একটা int return করি(return 0)
    কিন্তু আমি কোড করে দেখেছি যে return কল না করলেও কাজ করে তবে সেটা output দিতে একটু সময় নেয়......তবে প্রোগ্রাম রান হয়//
    প্রশ্নটা হচ্ছে return ছাড়াই যদি কাজ হয় তাহলে return করার দরকার কি? ৷ return এর অন্য কোনো বিশেষ বৈশষ্ট আছে?

  • @HR-545
    @HR-545 7 місяців тому

    9:21

  • @mdwashimakram5069
    @mdwashimakram5069 3 роки тому

    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

  • @sportswithrifat
    @sportswithrifat 2 роки тому

    nc

  • @mppgetech.8081
    @mppgetech.8081 5 років тому

    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.

  • @azimjamshed7645
    @azimjamshed7645 2 роки тому +1

    Bhai Apni C Ar Boss

  • @Kazi142
    @Kazi142 7 місяців тому

    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;
    }

  • @quesans
    @quesans Рік тому

    2023

  • @riponhossain6399
    @riponhossain6399 4 роки тому

    sir .plz ,upload new video

  • @thefamily2428
    @thefamily2428 3 роки тому

    #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!

  • @SalauddinPervez
    @SalauddinPervez 6 місяців тому

    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;
    }

  • @azimjamshed7645
    @azimjamshed7645 2 роки тому +3

    Sir, you are great 🙏🏻 thanks sir 🙏🏻❤❤❤