String Palindrome Program In C | In Hindi

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

Комментарии • 50

  • @yashtyagi6792
    @yashtyagi6792 2 года назад +7

    Sir build in function wale program mein error aarhi hai b=strrev(a) ; ye wali line mein
    Sir please reply

  • @ayushgoswami3675
    @ayushgoswami3675 Год назад +2

    Thank you sir for giving me this much knowledge
    i just want to correct the first code of palindrome using string fuctions
    int main()
    {
    char a[50],b[50],c[50];
    int i;
    printf("Enter string
    ");
    gets (a);
    strcpy(c,a);
    strrev(a);
    strcpy(b,a);
    printf("reverse number is
    %s",b);
    if(strcmpi(c,b)==0)
    printf("
    Yes pallendrom");
    else
    printf("
    Not pallendrom");
    return 0;
    }

  • @mahodadheejena5439
    @mahodadheejena5439 2 года назад

    Sir ur teaching is excellent 👌

  • @NEHAKUMARI-jc4oy
    @NEHAKUMARI-jc4oy 2 года назад

    Ur vdos are very helpful thnq 😊 sir

    • @codeitup
      @codeitup  2 года назад +1

      Glad to help you Neha!

  • @jaunabbas3492
    @jaunabbas3492 3 года назад +4

    sir this step is sowing an error
    b= strrev(a);
    please tell how to resolve.

  • @SilverSunknowledgecollection
    @SilverSunknowledgecollection 4 года назад +3

    Hi Anand, concept of reverse is a nice and different concept. We didn't get it in my classes👍🙂🙂🙂

  • @RohitRaj-nt9ot
    @RohitRaj-nt9ot 2 года назад +2

    Sir while solving this question using built in function in turbo c++ , one error arises i.e L value required. Please reply

    • @sakshitiwari1869
      @sakshitiwari1869 2 года назад +1

      Same error compiler showing in my. Computer

  • @sheikhsaad6858
    @sheikhsaad6858 Год назад

    sir ap bhut acha parhta ha👍

  • @YogeshSharma-vk4rr
    @YogeshSharma-vk4rr 3 года назад +2

    insted of b[i] you have to use b[j] when you are comparing two string.

  • @04.nehalsingh12
    @04.nehalsingh12 2 года назад

    awesome tutorial sir

  • @sakshitiwari1869
    @sakshitiwari1869 2 года назад

    Being a good coder you should wark in MNCs !
    May i know reason why you had not apply in companies

  • @SuperRiz04
    @SuperRiz04 4 года назад +1

    Good sir ji

  • @deepanshumann1721
    @deepanshumann1721 4 года назад +1

    nice video sir

    • @codeitup
      @codeitup  4 года назад

      Keep watching🙂

  • @akhileshkumar-zo9fb
    @akhileshkumar-zo9fb 4 года назад +1

    Very nice

  • @सुजाताचौहान
    @सुजाताचौहान 4 года назад +2

    👌nice

  • @navneetrauniyar1579
    @navneetrauniyar1579 4 года назад +1

    Nyc sir ......

  • @AshaKumari-dh4wi
    @AshaKumari-dh4wi 4 года назад +1

    Nice

  • @vinitasrivastava2469
    @vinitasrivastava2469 4 года назад

    Nice video👌

    • @codeitup
      @codeitup  4 года назад

      Thank you so much 😀

  • @Mr.Nirupendra
    @Mr.Nirupendra 5 месяцев назад

    Sir string function programs not working

  • @Nisha-fc4eo
    @Nisha-fc4eo 4 месяца назад

    Sir is program main error show ho rahi hain.

  • @Tarun-Chauhan00352
    @Tarun-Chauhan00352 3 года назад +2

    When you are doing reverse you are using b[j] but when you are comparing then you are using b[i]. Why are you doing so?

  • @rithikabhagnani8575
    @rithikabhagnani8575 7 месяцев назад

    Its showing error in this line (b=strrev(a)),
    instead write this:-
    gets(a) ;
    Strcpy(b, a) ;
    Strrev(b) ;

  • @mahodadheejena5439
    @mahodadheejena5439 2 года назад

    Sir I have a doubt :what is the concept of flag ?

    • @sanyamgairola3307
      @sanyamgairola3307 9 месяцев назад

      Flag is simply a variable whose value we set to 0
      then if the condition is met true its value is set to the integer we want.
      and then we use it to check the other conditions.
      flag is simply a logic we create to solve questions, except flag of flag we can use anything variable name we want which must obey variable naming rules.
      hope you understood that.

  • @sv798
    @sv798 Год назад +1

    Run ni ho rha ye

  • @gopalprasad4447
    @gopalprasad4447 4 года назад +1

    Sir java ka tutorial ka video banaeya

    • @codeitup
      @codeitup  4 года назад +1

      I have started Java tutorial, and will upload video almost every day at 7pm in the evening. Find the playlist link below:
      ruclips.net/p/PLmRclvVt5DtnqhXTJwd-oqVRwO3bLZCGV

    • @gopalprasad4447
      @gopalprasad4447 4 года назад

      @@codeitup ok thanks sir

  • @navdipsheladiya5777
    @navdipsheladiya5777 Год назад +2

    Palindrome me 1 vala jo code hai vo wronge hai pahle ap khud run karke dekiye fir dusro ko sikhaiye ..

  • @gopalprasad4447
    @gopalprasad4447 4 года назад +1

    Plzzzz sir

    • @codeitup
      @codeitup  4 года назад

      I have started Java tutorial, and will upload video almost every day at 7pm in the evening. Find the playlist link below:
      ruclips.net/p/PLmRclvVt5DtnqhXTJwd-oqVRwO3bLZCGV

  • @ayushpoddar3241
    @ayushpoddar3241 2 года назад +1

    sir this step is sowing an error
    b= strrev(a);
    please tell how to resolve