I made a mistake while writing this program but instead of re-recording, I decided to show you the steps I took to correct my mistakes. Frankly speaking the video actually turned out to be great in my opinion! Don't miss this video! Access this playlist and if you share it on Insta dont forget to tag me Instagram: Instagram.com/CodeWithHarry
Raat me sone jao .. codewithharry uploaded new video ...subh utho then we have again notification 💕such hard working man 💝 lots of love and respect Harry bhai .. after this 2020 definitely your channel will have new heights 💕
Harry bhi mai aj website development ap sai sikha hu or mai aj khud k web company chala rha hu ap k itna acha sikha nai k waja sai or jb v mujko problem hota hai ap k video sai abi v bahut help hota hai thanks allha ap ko salamat rakhay thanks bhi
Hey bro.. You were on java and c++ before 2 years.. I'm beginner.. Where are you right now? Can you tell me? How's your journey?.. I guess if you had learnt java c++ before 2 years . You are top of a head since now.. Reply plz. 😊
It's a good learning exercise. Just wanted to mention about a small glitch. It wont work properly if the length is an even number (say "Harrys" instead of "Harry"). Need to add a function to check odd/even and run the "i" loop accordingly.
Bhaiya I'm in class 11.....and I love coding a lot....pls guide kar dijiye what games I can make in pygame...I have already made space invaders game and fruit ninga type games...plz suggest...flappybird bhi code kar raha hu filal....ho sake bhaiya to aap bhi kuch naye games upload karona
Hi Harry, ek doubt tha iss video mein. I tried to run this code with the string "Akshay" and it resulted in "yashka" but the correct value for reversed string should be "yahskA". But when I change the code in the for loop from i < ( len -1)/2 to i
sir, mere django project me norrmally sirf yahi requirment hai.. 1. user detail me user ka mobile no and uska image required hai, 2. user bhi html page se hi apna blog post kar sake 3. user apna detail update or delete kar skae please sir thora time nikal ke kuch video bana do ess se related hindi me
Harry bhai Please Yaar Reply To Kr Do Kai Baar Comment Kr Diya Please Ek video Bana Do Competitive Programing Par Me Python Prefer Karta Lekin Competitive Coding Ke Liye c++ use karna chhahta hoon to kya ek company accept kr skti hai esa banda jo Competitive Coding c++ me kre aur Devlopment python Aur harry road map please explain kro yaar i am in 2nd year right now Bro Please🙏❣️ Thanks For Free Education
@CodeWithHarry sir len-1/2 is not working for "even" length of string... it should be len/2 as it gives an integer... this works for both even and odd and also for len = 8 we should go from 0 to 4 not 0 to 3 and hence len/2 is correct... and otherwise len -1-i is also correct.
please make playlist on reactjs please you have created playlist of website development but reactjs is included in that so without reactjs its incomlete its necessary for web developer to learn reactjs also so please make reactjs playlist in hindi. i am searching for it so long but can't able to find a good teacher like you to make things easier to understand please please . from your fan and student.
Hello Sir, I need your Pycharm Settings that you used in your tkinter series (Example, from, import, def keyword statements are in blue foreground) Pls reply...
@@uniqcreationz obviously bro why not i have also 4gb ram. Python is very light weight you can also use different ide such as vscode and sublime but i give u advise don't use any highweight ide's such as pycharm little bit hanged in system. But you can also use that's also. If you want.
mere abhi bhi run nahi ho raha hai me kya karu mere name himanshu hai and me jab string me himanshu type kar raha hu rab mere reverse string " uhsanmih" ye aa raha hai , mene code bhi check kara hai same to same hai? please solve harry bhai
if we give a string having even number of characters with middle 2 alphabets different the program won't give correct result. for example in word hariys
Harry bhai maine reverse JAVA mein try kiya bina kisi method se. Barabar nahi output aa raha hai. Can you please find out the mistake? import java.util.*; public class Reverseee { public static void main(String[] args) { String str="Siddhesh"; //my string char st[]=new char[10]; //character array to store string System.out.println(d); int i,j; int c=str.length(); for(i=c-1;i>=0;i--) { for(j=0;j
WOULD BE THE CORRECT CODE : import java.util.*; public class Reverseee { public static void main(String[] args) { String str = "Siddhesh"; // my string char st[] = new char[10]; // character array to store string int i, j; int c = str.length(); // Reverse the characters in the string and store them in the character array for (i = 0, j = c - 1; i < c; i++, j--) { st[i] = str.charAt(j); } // Print the reversed string System.out.println("Output "); for (i = 0; i < str.length(); i++) { System.out.print(st[i]); } System.out.println(); } }