Program to print all prime factors of a number in C

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 พ.ย. 2024

ความคิดเห็น • 75

  • @gouravp.3851
    @gouravp.3851 8 หลายเดือนก่อน +4

    idk why old videos on yt are always helpful..

  • @mdeesha
    @mdeesha 5 ปีที่แล้ว +8

    I understand easily your lacture and i watch programming c regularly...
    Thank you sir....

  • @sagarjani4870
    @sagarjani4870 4 ปีที่แล้ว +10

    Great explain including each and every minor points 🙏

  • @BrijeshKumar-qx2bk
    @BrijeshKumar-qx2bk 3 ปีที่แล้ว

    Thanks sir aap jaisa teacher ho to new born baby bhi programming seekh lega

  • @gauravkumawat5811
    @gauravkumawat5811 2 ปีที่แล้ว +1

    Sir the way you explained this problem as well as how unique your way for writing this code was completely out of the box and it cleared my doubts. Thank You so much sir for this solution

  • @akroshrathod5381
    @akroshrathod5381 4 ปีที่แล้ว +1

    Thank you so much sir
    Mujhe c language ka kuch bhi knowledge nhi tha but aapki vajah se main aaj achhese logic build karna and implement karna sikh gaya hun.
    Aapki padaneki technic bohot achhi hai.
    Aur main aapke sare lectures attend karta hoon.
    Once again thank you so much sir

  • @raunakchand5
    @raunakchand5 4 ปีที่แล้ว +1

    Yes sir hame sir university me c language kuchh samjhh me hi nhi aiya really sir ab hame c language bahut hi simple lag raha hai kash sir ap hamare university ka professor hote ,hamne pure video approx dekh chuka hua apka ,so thanks sir

  • @manjeet7595
    @manjeet7595 5 ปีที่แล้ว +3

    Thanks sir
    I solve this in python with your help.

  • @mehtabsingh7273
    @mehtabsingh7273 2 ปีที่แล้ว +2

    main()
    {
    int n,i,j=1;
    printf("Enter Number : ");
    scanf("%d",&n);
    printf("Prime Factors
    ");
    for(i=2; n!=1; i++) {
    if(n%i==0) {
    j = n / i ;
    printf("%d ",i);
    n = j;
    i = 1;
    }
    }
    }
    Tried with 1 loop
    By the way great explanation sir

  • @techyworld3892
    @techyworld3892 4 ปีที่แล้ว +1

    Finally got it here!!❤️❤️ Thanx sir

  • @Ankit-we8ym
    @Ankit-we8ym 7 ปีที่แล้ว +1

    thanks sir you made easy to understand the concept of programming

  • @anubhavnegi7428
    @anubhavnegi7428 5 ปีที่แล้ว

    Very good explanation sir. Hats off.

  • @radha_preymi
    @radha_preymi 3 ปีที่แล้ว

    Mst vdo sir

  • @shivam_9.o652
    @shivam_9.o652 3 ปีที่แล้ว

    Its superb sir...

  • @anujsinghsomvanshi3385
    @anujsinghsomvanshi3385 7 ปีที่แล้ว +1

    very nice logic sir .. thank you so much.

  • @mayagupta7546
    @mayagupta7546 4 ปีที่แล้ว

    Superb explanation😄😄

  • @usmanhussainhussain2068
    @usmanhussainhussain2068 8 ปีที่แล้ว +3

    sir you solved half of my problem thanx

  • @lalitmarkam9424
    @lalitmarkam9424 4 ปีที่แล้ว

    thankyou, its really very helpful for me

  • @shaheenalam152
    @shaheenalam152 3 ปีที่แล้ว

    Thank you sir .......

  • @s-linkcomputer5594
    @s-linkcomputer5594 8 ปีที่แล้ว

    Sir Bahut achhIi h appi concept ^^^^THANKS^^^^

  • @Abhisheksharma-ve2yg
    @Abhisheksharma-ve2yg 3 ปีที่แล้ว +3

    Please sir, make this program again with the help of recursion

  • @vaibhavmishra3883
    @vaibhavmishra3883 6 ปีที่แล้ว +4

    thnku sir ji..

  • @varunjindal7397
    @varunjindal7397 8 ปีที่แล้ว +1

    Thanks for the whole logic :)

  • @bipul2138
    @bipul2138 6 ปีที่แล้ว +1

    thanks a lot sir

  • @Anand-fg9gr
    @Anand-fg9gr 7 ปีที่แล้ว +1

    vry gd explanation

  • @ssssahil
    @ssssahil 7 ปีที่แล้ว

    superb sir

  • @cosmopolitanguy1379
    @cosmopolitanguy1379 8 ปีที่แล้ว +2

    what should I do so that out put shows me 5 only once.
    (ie. if enter 125 it should give me just 5.Not 5 5 5)

  • @soumikpoddar872
    @soumikpoddar872 6 ปีที่แล้ว +2

    Sir Please provide Gauss Seidel method in c program for linear equ .lt is helpful to us

  • @mrkattarhindu352
    @mrkattarhindu352 5 ปีที่แล้ว

    thanks sr

  • @noorsyed289
    @noorsyed289 5 ปีที่แล้ว

    This is one bit difficult sir..other any alternate logic is present plz make an video sir

  • @nitinparkash971
    @nitinparkash971 5 ปีที่แล้ว +1

    Sir....if the value of i=4 then 4 will print.....explain this sir

  • @akashkumaryadav1827
    @akashkumaryadav1827 3 ปีที่แล้ว +1

    Thank u sir

  • @likearollinstonem9924
    @likearollinstonem9924 7 ปีที่แล้ว

    Thanks a lot Sir!

  • @bhullarsaab9429
    @bhullarsaab9429 6 ปีที่แล้ว +1

    Thanks

  • @sunanshibatish2933
    @sunanshibatish2933 8 ปีที่แล้ว

    thank u so much sir

  • @RavikantKumar-ec2qs
    @RavikantKumar-ec2qs 7 ปีที่แล้ว

    thanks sir

  • @musicbypalak_1702
    @musicbypalak_1702 ปีที่แล้ว +1

    Which IDE?

  • @sibanandaroutray7934
    @sibanandaroutray7934 4 ปีที่แล้ว

    🙏🙏🙏

  • @geetramchandani1167
    @geetramchandani1167 5 ปีที่แล้ว +1

    Can we solve this problem by using nested for. And without using while loop..??

    • @095__imaduddin6
      @095__imaduddin6 4 ปีที่แล้ว

      yes bro, even it makes your program so concise.
      void main()
      {
      int no,i;
      scanf("%d",&no);
      for(i=2;i

  • @sheetal_s5153
    @sheetal_s5153 5 ปีที่แล้ว +1

    Sir please make a program to convert a no enter by the user to it's Roman equivalent upto 100

  • @kundan621
    @kundan621 8 ปีที่แล้ว

    thanks

  • @jaysurya9694
    @jaysurya9694 2 ปีที่แล้ว

    Sir in for loop you didn't define condition of i so it become a infinite loop.

  • @ishikarajawat2229
    @ishikarajawat2229 5 ปีที่แล้ว

    @saurabh shukla sir plz help how to write this program usinf recursion trying since 2 days not able to solve

  • @agamnagpal2156
    @agamnagpal2156 6 ปีที่แล้ว

    I need this program in c++ plz make vdio sir

  • @PankajSharma-fo8uf
    @PankajSharma-fo8uf 7 ปีที่แล้ว +2

    Sir, how to print prime factors of a number using functions??

  • @ManikantGoutamReal
    @ManikantGoutamReal 7 ปีที่แล้ว

    sir if we want comma after factor, and dont want comma at end, then what to do please help....

  • @utsavsinha5578
    @utsavsinha5578 7 ปีที่แล้ว

    wap which takes input from 1 to 9 and print " one " ,two " .....plz send me program using switch case in java

  • @imajaysahu
    @imajaysahu 4 ปีที่แล้ว

    Sir Mujhe c ki live classes karna. Chahata hu Mai lacture or programming live classes attempt karna chahta hu

  • @vivekkhatri1759
    @vivekkhatri1759 4 ปีที่แล้ว +1

    if someone wants in single loop 👇
    int N,i=2;
    printf("Enter the no : ");
    scanf("%d",&N);
    while(N>1)
    {
    if(N%i)
    i++;
    else
    {
    N=N/i;
    printf("%d ",i);
    }
    }

  • @untouchgrowth2823
    @untouchgrowth2823 5 ปีที่แล้ว +2

    Sir, x>1 kyo kiya h 'for loop' me, please tell me sir 🙏🙏

    • @kashyapisingh5101
      @kashyapisingh5101 5 ปีที่แล้ว +3

      Bcz humlog x ko divide kar rahe hai to har bar x ki value reduce hogi iss liye x>1

    • @yashverma4938
      @yashverma4938 3 ปีที่แล้ว

      @@kashyapisingh5101 usne bola h x>1 kyu krre h !
      Isliye krre h kyuki jab x=1 hoga toh 1 jo h uske prime factor todhi honge isliye 1 humhara number means x voh bada hona chahiye 1 se

  • @sayankumarbhakat4663
    @sayankumarbhakat4663 4 ปีที่แล้ว +1

    while running the same program if i enter 9874 then the factors are coming as 24937,but here 4,9 are not prime numbers,why is this happening?

  • @poonampanchal7872
    @poonampanchal7872 5 ปีที่แล้ว

    How can I print * between numbers
    Such that -
    For 36
    2*2*3*3

    • @tarungupta9780
      @tarungupta9780 4 ปีที่แล้ว

      Just write printf("*"); in the next line after printf

    • @shijinrejiabraham6806
      @shijinrejiabraham6806 3 ปีที่แล้ว

      @@tarungupta9780 what happened if i=4,(mode=0) it is not a prime number

  • @ruchipandey3634
    @ruchipandey3634 7 ปีที่แล้ว +2

    sir factors ko descending order me kaise likhe?

  • @Krishnakumar-gs8mb
    @Krishnakumar-gs8mb 6 ปีที่แล้ว

    Sir, jaise aapne 36 ka prime factor 2 2 3 3 nikala to hum 2 2 3 3 nhi 2 3 kaise print kare???

  • @sumitkaith6677
    @sumitkaith6677 4 ปีที่แล้ว

    ye program run nhi ho rha mere me ,,,,,,

  • @hemlatabiradar4047
    @hemlatabiradar4047 ปีที่แล้ว

    Not giving correct answer for 10, 12.....

  • @IrshadKhan-zv1vy
    @IrshadKhan-zv1vy 7 ปีที่แล้ว

    thanks sir

  • @kshitijvengurlekar1192
    @kshitijvengurlekar1192 5 ปีที่แล้ว

    Thanks