Program to Print the Fibonacci sequence | Javascript Tutorial

Поділитися
Вставка
  • Опубліковано 15 вер 2024
  • Program to Print the Fibonacci sequence | Javascript Tutorial
    In This Tutorial, We will learn about the Program to Print the Fibonacci sequence | Javascript Tutorial Full Tutorial Step By Step with proper guidance.
    Please subscribe and press the bell icon to receive daily updates
    Facebook: / wscubetech.india
    Twitter: / wscube
    Instagram: / wscubetechindia
    LinkedIn: / wscubetech
    UA-cam: - / @scoreshala
    Website: www.wscubetech.com
    #Fibonaccisequence #JavascriptTutorial #Javascript

КОМЕНТАРІ • 21

  • @brownsugar2549
    @brownsugar2549 2 роки тому +4

    Bhaiya Ji Thank You.. Bahut Simple tha ye

  • @prinzadamz
    @prinzadamz 8 місяців тому +2

    Thanks bro... 👍👍👌👌😍😍

  • @thecodelife9855
    @thecodelife9855 2 роки тому +2

    a=b, b=temp....reminds me of that scene from govinda's movie "haseena maan jaegi" when paresh raval says "ohhh saab ji...jo chacha hai,wo bhatija hai...aur jo bhatija hai, wo chacha hai".

  • @RamanNani1998
    @RamanNani1998 8 місяців тому

    Tq so much

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

    thanks

  • @rakeshruler2524
    @rakeshruler2524 11 місяців тому

    Thank you

  • @abhisheksathe123
    @abhisheksathe123 11 місяців тому

    Thank you so much for making this video. What to do if we want output in array format for example [0,1,1,2,3,5] ?

    • @prinzadamz
      @prinzadamz 8 місяців тому

      Initialize an empty array, eg: let fb = [ ] and use the push() method to populate the array.

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

    Maja aa gaya aap se padh kar bhai

  • @manosatpathy1579
    @manosatpathy1579 Рік тому +1

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

    thank you so much sir ❤

  • @Viraj-ym4be
    @Viraj-ym4be Рік тому +1

    Sir console.log ko run kasa karay

  • @prafulsomkuwar9911
    @prafulsomkuwar9911 11 місяців тому

    output correct rhta but code likhne ka tarika sahi kr do sir kha ka kha console likh dete ho student achhhe se smjh nhi pate confused hote hai pura complite program likha kro

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

    trickey

  • @Viraj-ym4be
    @Viraj-ym4be Рік тому +1

    Plz hello plz

  • @blackscreenstatus9836
    @blackscreenstatus9836 Місяць тому +1

  • @asifcreations59
    @asifcreations59 Місяць тому

    #include
    #include
    void pm();
    void plus();
    void div();
    int i,ch,j,l,addr=100;
    char ex[10], exp[10] ,exp1[10],exp2[10],id1[5],op[5],id2[5];
    void main()
    {
    clrscr();
    while(1)
    {
    printf("
    1.assignment
    2.arithmetic
    3.relational
    4.Exit
    Enter the choice:");
    scanf("%d",&ch);
    switch(ch)
    {
    case 1:
    printf("
    Enter the expression with assignment operator:");
    scanf("%s",exp);
    l=strlen(exp);
    exp2[0]='\0';
    i=0;
    while(exp[i]!='=')
    {
    i++;
    }
    strncat(exp2,exp,i);
    strrev(exp);
    exp1[0]='\0';
    strncat(exp1,exp,l-(i+1));
    strrev(exp1);
    printf("Three address code:
    temp=%s
    %s=temp
    ",exp1,exp2);
    break;
    case 2:
    printf("
    Enter the expression with arithmetic operator:");
    scanf("%s",ex);
    strcpy(exp,ex);
    l=strlen(exp);
    exp1[0]='\0';
    for(i=0;i