In the beginning, your course is successful. I find that you are a creative person. I want to ask you if you want to add new videos because you have updated the applications and you have not registered new videos. And I have another request if you use the English language in the explanation, because most of your followers are foreigners. Thank you
@programmer_one3 жыл бұрын
Hi, I'm glad to tell you that I'm already working on new tutorials and will try to make them available as soon as possible. Thanks for your support.
@BraveHeart-o9f3 жыл бұрын
@@programmer_one glad to hear that . All the best for you teacher .
@vijay-v7f7i12 күн бұрын
Thankyou💫
@samyakjain67956 жыл бұрын
Sir plz upload pattern 29 and 34 explanation,and its my humble request to you that explain our icse board patterns ASAP since our exams are starting from 22 feb🙏🙏
@captainjacksparrow89163 жыл бұрын
Thank you so much
@eneshpal87824 жыл бұрын
Sir diagonal type print par bhi tutorial banayiye, mujhse interview me vohi pucha gaya tha.
@mowlawlee125 жыл бұрын
Why not take( I+64)...and i=1-5
@programmer_one5 жыл бұрын
Hi Mowlaw, yes we can use it as well
@kusumaseera37534 жыл бұрын
Sir...please upload english subtitles
@praveenverma89436 жыл бұрын
Thank you sir
@hemanthkumar11006 жыл бұрын
Hii bro, Bro i am doing these programmes in (online beeta compiler. app in my mobile) but the output is not coming. Please helpme bro
@programmer_one6 жыл бұрын
Send me your tried code at appquery@softethics.com
@AyeshaKhan-ul3zx6 жыл бұрын
Sir ,pattern 98 wala explain kr dajyae kindly....
@akhandpratapsingh9315 жыл бұрын
Sir agr "%c " ki vajah java m kiya kre ge
@programmer_one5 жыл бұрын
You have two ways to do it in Java: 1) System.out.printf("%c",i); 2) System.out.print((char)i); Best Regards, Sumit Tiwari
@aasmamazumdar27504 жыл бұрын
@@programmer_one Sir it will be (char)(i+65)???
@programmer_one4 жыл бұрын
Yes, it is. You may use both System.out.print((char)(i+65)); or System.out.printf("%c",i+65);
@kingrahul162 жыл бұрын
@@programmer_one not working same program in java
@sinidevis63434 жыл бұрын
Sir ... can u upload English substitute videos....please....😞
@roopsilkstore84615 жыл бұрын
sir we can do by input string like ABCDE
@programmer_one5 жыл бұрын
Yes
@vinaygupta95033 жыл бұрын
how to write printf("%c",i+65) in javascript ?
@programmer_one3 жыл бұрын
Hi Vinay, We may use String.fromCharCode(): document.write(String.fromCharCode(i+65));
@vinaygupta95033 жыл бұрын
@@programmer_one thank you sir.
@easyterms35186 жыл бұрын
Upload all videos soon sir
@FunWithKabir4 жыл бұрын
#FunWithKabir when I print it in c++ with same (i+65) it gives 66 67......it does not give A B C..... So sir how can I solve that problem
@programmer_one4 жыл бұрын
Hi Kabir, use (char) cout
@anupamakumari3927 Жыл бұрын
A to Z pattern par video banaye
@programmer_one Жыл бұрын
Soon
@jitendramahto72135 жыл бұрын
Gooooooooooooood
@jasondalayan7384 жыл бұрын
can u speak english. sorry i don't understand ur lec
@stoic.bloodvick2 жыл бұрын
Sir how to make inverted character pattern like A B C D E F G H I J K L M
@programmer_one2 жыл бұрын
int main() { int n = 5; int i,j,p = 'A'; for(i = n; i >= 1; i--) { for (j = 1; j