String Conversion from Upper Case to Lower Case & Vice Versa | In Hindi

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

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

  • @mr.nazish_01
    @mr.nazish_01 2 месяца назад

    It's my coding started with you ❤

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

    Hi Anand, thank u for this, I missed my days in class by this video 🙂🙂🙂👍👍

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

      My pleasure 😊

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

    All program very helpful sir

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

    You understand so well that programming now looks more good

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

      Very Glad to Hear That..

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

    I follow you regularly. You are great.

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

      Thanks Abhishek...

  • @PunamEkPrerna
    @PunamEkPrerna 4 года назад +2

    You are a best teacher

  • @SaurabhKumar-lk4jz
    @SaurabhKumar-lk4jz 4 года назад +2

    Nice explanation sir

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

      Thanks and welcome🙂

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

    Thank you so much sir mene itna search kia kahi par ek jagah par concept nahi Mila thank you so much sir 👍👍😃😃😃😃😃😃😃😃😃😃😃ek hi jagah par with or without using string functions ka apne btaya 👍👍👍🔥🔥🔥

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

      Most welcome Anisha !

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

    Very knowledgeable video.

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

      Glad it was helpful!

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

    Nicely explained sir👌

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

      Thanks and welcome🙂

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

    technical guruji =chaliye shuru karte hai
    codeitup sir=chaliye start karte hai

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

      Mind Blowing ! You made me laugh ! 😇

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

    super explanation !

  • @praveenkumarrajak9213
    @praveenkumarrajak9213 6 месяцев назад

    Thanks Sir❤

    • @codeitup
      @codeitup  5 месяцев назад

      Most welcome!

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

    Sir if my program is to convert string in lower case without using strlwr() function and user input the string also in lower case. Then this code will not work, it will convert it in upper case. What will be its solution please reply sir 🙏🙏

  • @UpendraKumar-qh7xv
    @UpendraKumar-qh7xv 4 года назад +1

    Very good..

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

    Sir aap bihar me kha se ho.

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

    nice video👌

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

      Thank you so much 😀

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

    sir apki playlist dekhne k baad kya krna hai

  • @randomshorts1729
    @randomshorts1729 3 года назад +1

    Sir jo last mein a[I]+32 hota hai kis logic se hota hai mtlb
    a+32=A j kya logic hai

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

      Lower case to upper case - a[i]=a[i]-32
      Upper case to lower case - a[i]=a[i]+32

    • @randomshorts1729
      @randomshorts1729 3 года назад

      @@codeitup sir I couldnt get the logic
      means a[i] is a character but 32 is int
      btw thanks for replying the message

    • @kajalpal6220
      @kajalpal6220 3 года назад

      Suppose a[i] is 'A'. This is a character literal.
      So, a[i] + 32
      = 'A' + 32
      = 65 + 32
      = 97
      This happened because int is a higher data type than char, so the char value is converted to a int value which is actually its ASCII value. Now
      a[i] = a[i] + 32
      => a[i] = 97
      => a[i] = 'a'
      97 represents the character 'a'. a[i] must be a character as it is a char array. So, 97 is automatically converted to 'a' and 'A' becomes 'a'. Same is from lower to upper. You have to subtract 32 from it. The different between the ASCII values of a and A or b and B or c and C or z and Z is always 32.

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

      @@randomshorts1729 just go through Ascii value once

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

    Nyc

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

    Sir please provide me a link for all the above previous programs

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

      Please find the C playlist list where you will find step by step tutorials:
      ruclips.net/p/PLmRclvVt5DtksgReOH3s7R1_cb1QA8vrb

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

      @@codeitup thankyou soo much sir👍

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

      Most welcome Vinisha, pls share this channel with all your friends...

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

    Sir last example mein I want RAM KUMAR full. Maine puts(a) lgaya fir bhi it is printing only RAM. Why? What is the solution to print whole name??
    please helpp

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

      Read the name using gets() function.

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

      @@codeitup gets(a) hi lgaya h sir..fir bhi nhi horha

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

      @@codeitup int main()
      {
      Char a[50];
      int i;
      Printf("enter string:");
      Gets(a);
      For(i=0; a[i]!= '\0' ; i++)
      a[i] = a[i]-32;
      Puts (a);
      Return 0;
      }

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

      Paste your program here.

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

      @@codeitup sir ab it is working fine. I dont know how. But ab space ka lowercase "@" print ho rha hai.
      RAM KAPOOR = ram@kapoor

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

    🔥

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

    👍💯

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

    😌

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

    SIR space ki jagah @ a rha hai 🙂🙂