I thought that c++ is difficult than c, but by watching your videos, I feel like it's easier. nice work.
@LearningLad9 жыл бұрын
+bhargava gopi Thank u and happy to hear that :)
@UnprovenAssumptions7 жыл бұрын
Wow! I'm blown away at your ability to explain these concepts so simply. I feel like even I can do it now, and that's saying something! Thanks for the tutorial, you earned a like form me.
@LearningLad7 жыл бұрын
Thank you. i'm really glad that my tutorials are helping you. Keep Learning :)
@RavinderKaur-hx8qx5 жыл бұрын
Your tutorials are best
@LearningLad5 жыл бұрын
thank you :)
@deepakreddy805310 жыл бұрын
Your videos are really helping me ......in learning c++ ....thanks for helping us by your tutorials...... Very good learning....:):)
@LearningLad10 жыл бұрын
deepak reddy i'm glad that my videos are helping you :) thanks for the comment man.
@ektagemnani53349 жыл бұрын
***** sir cn u plz teach html also i love ur videos my confidence z increasing alot ill b facing campus on 25th f dis month cn u plz help me out in web development also?
@LearningLad9 жыл бұрын
we have plans to make html5 and css3 video's. But its gonna take some time. So you have to look for other resources. All the Best :)
@ektagemnani53349 жыл бұрын
cn u tell me till wht tym ull b able to make bcoz i have to sit in TCS also by nov or dec...sir plz help me out in html n css i m nt able to get good resource n book for it plzz
@LearningLad9 жыл бұрын
i really can't say!!!! we have a lot of requests for c# and python tutorials and also we need to complete our java series. So may be after the completion of them we'll make html tutorials. sorry for the inconvenience.
@shashidharkumart50098 жыл бұрын
#include using namespace std; int main() { cout
@LearningLad8 жыл бұрын
pleasure :)
@abhishekanand73767 жыл бұрын
print "FUCK OFF"
@abhishekanand73767 жыл бұрын
its python by the way
@manjeetkapil18826 жыл бұрын
i stopped playing pubg less due to this videos because they are very intersting
@Keetmalin10 жыл бұрын
All these videos are really helpful... thanks alot :)
@LearningLad10 жыл бұрын
Keet Malin Sugathadasa,i am really glad that my videos helped you :)
@tylorbray8 жыл бұрын
Your the best thanks for the tutorials.
@muhammadroshan73158 жыл бұрын
RIP Anglesh :p
@Journalist.amrit0076 жыл бұрын
I hv learnt so much to see ur tutorial Anil Sir.. Sir I request u to put the videos of solution of some exercises given at the end. e
@LearningLad6 жыл бұрын
i have got many requests for this. i will try :)
@upasnasingh21174 жыл бұрын
You are awesome teacher thanks for teaching us in this way
@Noldy__9 жыл бұрын
Understood :). Done for the day.
@thaladaran75137 жыл бұрын
tnqqqq so much sirrrrrrrr its very helpful.........
@TarunKumar-ll8qf6 жыл бұрын
Thanks for your tutorials
@LearningLad6 жыл бұрын
my pleasure :)
@TarunKumar-ll8qf6 жыл бұрын
Awesome anil sir
@LearningLad6 жыл бұрын
thank you :)
@shiwangi__70874 жыл бұрын
Thank you
@LearningLad4 жыл бұрын
You're welcome
@hitmanOnBillBoard7 жыл бұрын
I typed out everything exactly like I saw in the tutorial, but cin does not seem to work. If I pass in a char[] variable, I can get it to work somewhat but still not fully. When I run it and try to enter the value, I can't get it to echo the keyboard. I press enter and I can see the cursor go down a line but it still dose nothing. If I press a ^z and enter, it goes to the cout statement, but then the integer is never assigned.
@LearningLad7 жыл бұрын
visit my website, get the source code and try with it. you might have made a small mistake in your code
@rishikvarma34756 жыл бұрын
if we need to take two inputs via cin where the two integer inputs are separated by spacebar , then can we write like this: cin>>a>>" ">>b; ????
@LearningLad6 жыл бұрын
use cin >> a >> b;
@rishikvarma34756 жыл бұрын
@@LearningLad thanks
@kleozane27816 жыл бұрын
Use or \t. If i remember correctly, they do not "interact" with your code, only add spaces and end lines
@gadgetsfizztech36386 жыл бұрын
Okay i knw its stupid but still wanted to knw .... After completing the whole c++ from ur channel/these videos ,how much capable the viewer wud be like is it tht great ki job level ka h/or to make some sort of programme softwares and something ki just for clg level for beginners who just wanna know wht c++ is and hw is it used?
@mr.actapus40695 жыл бұрын
hi
@aryavardhansingh21625 жыл бұрын
sir can u tell me that how can space and enter both are same to read the input
@michaelthompson74110 жыл бұрын
thanks for the video. i am using the Microsoft visual studio c++.. i have been watching all of your videos and trying it all out. but in this video, when i debugged, it showed the output screen but disappeared after my input age value. usually, i use the cin.get(); at the end of every program since i am using the visual studio 2008 version. what am i doing wrong?
@LearningLad10 жыл бұрын
Michael Thompson when you enter the value for age and hit the enter button, It leaves a trailing newline token in the input stream and cin.get() is consuming that value. try using cin.ignore(); cin.get(); if you still get errors pls let me know along with the source code:)
@ramchinthakayala20924 жыл бұрын
Bro, are we using cout and cin while building application?
@Nethrik8 жыл бұрын
Thank you.
@goodthings5158 жыл бұрын
sir is there is and method of type casting through which we can change our float or integer value to some character??
@goodthings5158 жыл бұрын
And sir I m the beginner of c++ and sir I want to tell u thank you very much for this tutorial as it is short and easy to understand c++ and also one of the best tutorial class for me
@RahulSharma-yp1lx4 жыл бұрын
Sir , why (average is ) there after the stream insertion operator ?
@veggieboy12 жыл бұрын
Because cin >> age returns a reference to cin, so it's like doing cin >> avg. Think of it like this: (cin >> age) = cin, so (cin >> age) >> avg; is the same as cin >> avg; (but obviously cin after having read age is different than before).
@ahappyperson65307 жыл бұрын
sir, will you upload a video of programming a software with c++ please 🙏🙏🙏
@LearningLad7 жыл бұрын
i'll try but may take some as i'm currently busy with some projects :)
@LearningLad7 жыл бұрын
*take some time
@rosewhitely7 жыл бұрын
hello sir can we use cin for Boolean functions also?
@LearningLad7 жыл бұрын
yes you can. in this series i have a video which explains how to read Boolean values as true and false using cin. (i just dont know the video number pls search in my channel.)
@rosewhitely7 жыл бұрын
Thanks sir I will try it again
@rocky207177 жыл бұрын
06 | Creating and Using C++ Variables | CPP Programming Video Tutorial bool isit = true; In true , Value of 1 will be stored in this is it variable & if you use false here a value ZERO will be stored
@estservicesltd28415 жыл бұрын
this is what am trying on c++, but after the receiver inputs his or her yes,the rest of the questions jam up, what do i do? #include using namespace std; int main () { // Question.To qualify as a doctor,one has to fulfill the following conditions; // 1. Age must be above 25 // 2. must posses a fist class // 3. program studied must have science and // 4. must have completed national service. { int age; int yes; int science; int no; cout > age; cout
@aravindchandrasekaran53246 жыл бұрын
what compiler r u using
@LearningLad6 жыл бұрын
gcc
@najehmchirgui79688 жыл бұрын
Thanks you so much
@Journalist.amrit0076 жыл бұрын
I understand all the theories but how can i execute the program or solve the question ? plz suggest me..
@LearningLad6 жыл бұрын
i can understand. All you have to do is practice what you learn. have a plan about solving the problem. write code. try to do different things in your program. it will be easy. you will be fine. this happens with most people
@mohosinmohosin-es8hf8 жыл бұрын
dear sir i want to know .if i lean your 143 vidio.do you think it is just for me to learn c++.
@nehalgupta53164 жыл бұрын
Is cin is same as scanf in c??
@rajasangeetha80927 жыл бұрын
hi sir, we can't use endl to cin?
@LearningLad6 жыл бұрын
endl is used to take the output to next line. So it is used with cout
@SOLOTECH-xx4yj4 ай бұрын
this tutorial is 6yrs ago, is it still good to continue?. please i need response!
@Rahul-xf4ez9 жыл бұрын
this was the code I used #include ; using namespace std; int main(){ int age; float avg; cout > avg; cout
@iChikyIntros9 жыл бұрын
Dont use semicolon in #iclude
@akhileshlsingh85995 жыл бұрын
I am is real new to coder can u please tell be a one line diff in cout and cin
@lovelife78734 жыл бұрын
so nyc
@LearningLad4 жыл бұрын
Thanks
@aua19869 жыл бұрын
hi, When I run it, the average doesn't work, it gives me long decimal numbers and I have written everything down like you have it on the video. why could this be?
@brucewayne-qq9bw8 жыл бұрын
good job
@LearningLad8 жыл бұрын
Thank you :)
@truefact78638 жыл бұрын
bro i have question about what is the main difference between c++ programming video tutorial and oop c++ programming
@princegupta67798 жыл бұрын
Basically in C++ programming tutorial we learns the fundamentals of c++, inbuilt data types their methods etc. In object oriented programming we create our own datatype to create its instances and work on it. It really makes the programme beautiful
@aryanpanchal92484 жыл бұрын
5:40 why the execution time is soo high?
@aswaghoshanilkumar81646 жыл бұрын
Thx sir
@LearningLad6 жыл бұрын
my pleasure :)
@usamasarfraz25177 жыл бұрын
Good job
@LearningLad7 жыл бұрын
Thank you :)
@himanshushukla35838 жыл бұрын
why we have used space between age and avg in video tutorial 8 using space bar may use some garbage value why it is not showing garbage value
@JATINKUMAR-hx5mb6 жыл бұрын
Best book kon si hai sdir c++ ki
@Reactionsgirls4 жыл бұрын
Can you plss tell me the full form of cin and cout please ?
@entertainmentalways22056 жыл бұрын
Sir g cin is not working.If a run a program to convert Fahrenheit to Celcius and After that when I enter any value in Fahrenheit than it gives Answer as 0 Celcius everytime.
@biswajeetnayak37956 жыл бұрын
Hey why namespace is used it can be done without that I think
@omkarmohanty23567 жыл бұрын
in dev c++ rhis isnt working i input some value in command prompt and when i press enter the screen of command prompt vanishes pls tell me what to do
@LearningLad7 жыл бұрын
just add a pause to your program include cstdlib header file and then write the statement system("PAUSE"); just before the return 0 statement. you can watch the Hello world program video ( i think video number 4 )
@Nothing-gn9km5 жыл бұрын
I'm using cin, but error msg is generated. It says, no match for 'operator>>'.. Plz help me.
@LearningLad5 жыл бұрын
pls post your code
@Nothing-gn9km5 жыл бұрын
@@LearningLad thanks for the support, sir. But I cleared my doubt myself 😅. I was using endl with cin, that's why it was showing error. Now I'm good to go. BTW, kudos to you for such quality content.
@deepalikadam21547 жыл бұрын
Good
@LearningLad7 жыл бұрын
Thank you :)
@Rahul-xf4ez9 жыл бұрын
I followed everything you said but I get a small problem.I input my age and average and it comes right but there is no spacing between the text and number.It comes like this "you have entered15".No spacing between entered and 15.where did I go wrong?
@ahusyn9 жыл бұрын
+Rahul R you need to add a space before the end quotation,, e.g "this is okay " < see there is a space
@lubabaafzal62007 жыл бұрын
Bro , I would like to share a problem...I dont know what timus 1001 prob actually means ..i have only solved timus 1000
@subbuvanapalli9597 жыл бұрын
could u please fix the error in the below the program
@mahitoshray66917 жыл бұрын
can you tell me the name of this c++ application
@JagatK_6 жыл бұрын
In the given code I entered my age as 0020 but got the output as 20. No doubt the answer is correct but I want to know, "how does it happen !! " .
You lose about 20k views after every video of the series, these are the people who are not dedicated. Amazing videos though XD
@MudassirKhan-ui2rj5 жыл бұрын
hello, i need ur help pls. im really new to coding (just 1 week) i created a program today seeing ur tutorial. im mentioning it below. #include using namespace std; int main() { int age; int realage; cout age; cout
@m-agoumi6 жыл бұрын
what about receiving a string value like what's your name?? so this video is kinda useless