The part I loved a lot about your tutorials is that, you use extremely good, short, easy and straight forward examples to teach. I actually wonders from where do you bring them haha. Really Really Incredible and well structured. Thank you so much for helping us. - With love :)
This method of adding objects is much much simpler than operator overloading 👌👌. But still not a single video in youtube covers operator overloading in detail🙂
*Sir mene apka pura tutorial download kiya h python ka and tq so much for this meri Infosys ki exam h 22 of March 2020 ko 3 rounds he mene 1st round clear kr liya h and usme 2 languages thi to mene Python choose ki h I hope ki me sb sikh jau and exam ache se de sku* And sir abhi InfytQ ke sample papers please solve krwa do please
Nahi tha hard..it was medium level... Just a and b ka value lia 2 times phir setdatasum ke help se add kr dia a apni jaga and b apni jaga ...kya hard tha isme🙄
i made product of 2 C.N after watching this. i didnt copy pasted ur code i just made somewhat alteration. in output i have to enter a and b manually and used operation directly in cout function of void product
In mathematical terms, the `setDataBySum` function computes the sum of two complex numbers represented by `o1` and `o2`, and stores the result in the current object's data members. If we denote the complex numbers as follows: - `o1` = \(a_1 + b_1i\) - `o2` = \(a_2 + b_2i\) Then, the function computes the sum of these complex numbers and stores it in the current object's data members as: - Real part (`a`) = \(a_1 + a_2\) - Imaginary part (`b`) = \(b_1 + b_2\) So, the resulting complex number stored in the object is: \[ (a_1 + a_2) + (b_1 + b_2)i \]
A lot of thanks Harry sir ...i am watching your all videos of this playlist and hope as soon as possible it 's competed with full understanding... thanks again ❤
// understand the array of objects and passing objects as arguments. #include using namespace std; // making a class complex class complex{ int a,b; public: void setdata(int x, int y); void setbysum(complex o1,complex o2); }; // designing a function setdata to set the inputted data from the user to form our required complex number void complex :: setdata(int x,int y){ a = x; b = y; cout
People praised on the first 5 videos because this whole course is free..If you actually want to praise and thank this guy at make full use of this course for yourself..🙂
Harry sir Zinda baad, actually OOPs ki starting main mujhe kuch samjh nahi aa raha tha, I thought ki aap dhang se nahi padha rhe ho, but I was wrong, video by video Clear ho rhe doubts.
@@nimi5631 follow up this code here I asked the user to enter the value of a and b and I also created a function only for output:- by declaring int am, bm;....follow up the below code here you'll get all your question answer and if you got any query then ask me I'll resolve it! #include using namespace std; class imp { int a; int b; int am; int bm; public: void enterdata(void); void showdata(imp o1, imp o2); void printnumber(void); void foryou(void); }; void imp :: enterdata(void) { couta; coutb; } void imp :: showdata(imp o1, imp o2) { am = o1.a + o2.a; bm = o1.b + o2.b; } void imp :: printnumber(void) { cout
bhai main to commerce background se hu aur abhi 1st year main hu aur mujhe complex number ke baare main koi idea nhi tha but code dekh ke to samajh gaya but jab google kiya to samajh nhi aaya code wala to dekh ke samajh aa gaya but wo actual math wala complex number nhi pata
Can you please make a detailed tutorial on "HOW TO MAKE A BOOK APP IN THE LATEST VERSION ANDROID STUDIO." There are absolutely none videos about that on UA-cam right now.
harry bhai your videos getting much harder to understand I watched the videos twice but doesn't able to understand so I skipped those videos. Please make it easy to understand
This is the code which i have written // to find sum of Complex numbers #include using namespace std; class factory { private: int a; int b; int c; int d; int sum; public: void read() { cout a; cout b; sum = a + b; } void read1() { cout c; cout d; sum = c + d; } void data_by_sum() { cout
Bro is mein passing objects by function kahan hai?? upr video ka title prho us me kya likha aur tum ne kis method se kiya ... tum ne jo kya wo simple method hai lekin is me Harry bhai ne passing objects as functions smjhaye hain jo k tumhary waly se different hai
viewers are decreasing from first to this video ,only people who are actually interested are watching now
People lose interest way too early...
bcz peoples are motivated ... they dont come with there own interests
@@ijnokm7903 wise Line !!!!!!!!!
yeah I am in 8th grade I can't understand complex numbers but also I am practicing.......
@@sushilasriv19 complex numbers aren't a big deal . It's a very simple and moreover you don't need to understand it for this video .
The part I loved a lot about your tutorials is that, you use extremely good, short, easy and straight forward examples to teach. I actually wonders from where do you bring them haha.
Really Really Incredible and well structured.
Thank you so much for helping us.
- With love :)
Code with harry is the channel who shows the work instead of talking much
instead of using endl you can use "
"
Reason: endl flushes the buffer whereas
just creates a way for new line and keeps the program fast
This method of adding objects is much much simpler than operator overloading 👌👌. But still not a single video in youtube covers operator overloading in detail🙂
Then
You should cheack out c++ by saurabh shukla sir...
Yeah, little bit difficult, but your simplicity of explanation and my dedication of understanding worked.
😂❤
Doston haar nhi man ni, datte raho... 💪💪
Thank you Harry Bhai! I have learnt a lot from your videos and have shared them with my friends as well!! Thank you so much for your help!!!!!!!!!
*Sir mene apka pura tutorial download kiya h python ka and tq so much for this meri Infosys ki exam h 22 of March 2020 ko 3 rounds he mene 1st round clear kr liya h and usme 2 languages thi to mene Python choose ki h I hope ki me sb sikh jau and exam ache se de sku*
And sir abhi InfytQ ke sample papers please solve krwa do please
Bhai round clear Kar liya Apne
Infosys ka
15:32 , Hard tha guruji, but samajh me aa gaya finally. All the appreciation goes to your explanation.
Nahi tha hard..it was medium level... Just a and b ka value lia 2 times phir setdatasum ke help se add kr dia a apni jaga and b apni jaga ...kya hard tha isme🙄
Medium bhi nahi easy tha dekhte se hi samajh aa gaya🤣🤣
@@zombiekiller7101 easy bhi nhi tha bina dekhe hi samjh aa gya
@@vaibhavwatts mujhe bin dekhe tumsb ke conversation se hi smjh aa gya
@@sachinsingh6885 muje to tumare comment ke notification ke sound sune pe he smaj aagaya
har video k end me ek satisfaction milti hai concepts clear hone ki .thank u sir :) :)
Yes🤘
Sir, i have forwarded and suggested your videos to all my uni friends
i made product of 2 C.N after watching this.
i didnt copy pasted ur code i just made somewhat alteration.
in output i have to enter a and b manually and used operation directly in cout function of void product
Thank You sir .You are the best .thanks really for making such an easy and learnable course
In mathematical terms, the `setDataBySum` function computes the sum of two complex numbers represented by `o1` and `o2`, and stores the result in the current object's data members.
If we denote the complex numbers as follows:
- `o1` = \(a_1 + b_1i\)
- `o2` = \(a_2 + b_2i\)
Then, the function computes the sum of these complex numbers and stores it in the current object's data members as:
- Real part (`a`) = \(a_1 + a_2\)
- Imaginary part (`b`) = \(b_1 + b_2\)
So, the resulting complex number stored in the object is:
\[ (a_1 + a_2) + (b_1 + b_2)i \]
Thank you so much harry bhai. Apke wajah se hi to programming sikh paate hain zyadatar students india me
Bhaiya , agar aap employee ki jagah games se related ki example dete to aur zyada aata poora coarse. But still course is great 🙌
#include
using namespace std;
int main(){
cout
17:08
//We can also use this
for(int i = 0 ; i
Please make detailed course on Data Structures and Algorithm those who want this please comment 🙏
me
Yes Harry bhai please
ye bhott jaroori hai
Yes I also want it.
yes me too please bhai
Crystal clear the concept of array of objects in c++ . Harry bhai always d only one❤🙏
harry ne object overloading ke uppr video banaya h kya ?
it is very good job harry bhai, because after watching your video we don't have to read complicated book !
A lot of thanks Harry sir ...i am watching your all videos of this playlist and hope as soon as possible it 's competed with full understanding... thanks again ❤
your videos are not good for problem solving but these are good for understanding the programming language
Thank You sir ,Very useful CPP course ...............!!!!!!!!!!!!!
// understand the array of objects and passing objects as arguments.
#include
using namespace std;
// making a class complex
class complex{
int a,b;
public:
void setdata(int x, int y);
void setbysum(complex o1,complex o2);
};
// designing a function setdata to set the inputted data from the user to form our required complex number
void complex :: setdata(int x,int y){
a = x;
b = y;
cout
People praised on the first 5 videos because this whole course is free..If you actually want to praise and thank this guy at make full use of this course for yourself..🙂
Bhai yar muje opps se kuch samaj nahi aara hai 😭😭 please help
@@dheerajaggarwal606 2 3 baar dekho
@@dheerajaggarwal606 Bhai oops me tujhe kya smj nhi a rha me batata hu
Harry bhai ne Facebook kharidliya Congrats harry bhai
sir aap har video k sath notes available kra dete to kafi accha rehta kuki aap ki kahi sari batein nhi note kr pata hu
Open the link given in description and open the website..and read / write the notes from there
Thnx Harry Sir . But I have some query.
Query kya hai ?
@@lostsky7656 been 3 years no answers yet!
@@lostsky7656ye Raaz bhi unke saath hi chle gya 😂😂
@@MohitSingh-wx1zd 😂😂😂
Hui solve query?
just completed 25% of c++ course
First milestone reached!
Aiming for 50% course completion
Yep same. I wanna complete this full course in a week if I can, and move to some practice and then to dsa
Bro not 25% but more than 35 %
Total videos are 74
Are you one of those guys joining college this year(just curious 🧐🥲)
Same here guys✌️
@@divyaagarwal6172 but still its, classes are confusing 🥲
@@treasurehunter449 i m from mechanical eng. , will companies allow me in there interviews?
Jazakallah
😇😇
Harry sir Zinda baad, actually OOPs ki starting main mujhe kuch samjh nahi aa raha tha, I thought ki aap dhang se nahi padha rhe ho, but I was wrong, video by video Clear ho rhe doubts.
I stongly recommend to watch this series after completing c
thanks brother.
#include
using namespace std;
class complex {
int a,b;
public:
void set(int v1,int v2) {
a = v1;
b = v2;
}
void setsum(complex o1,complex o2) {
a = o1.a + o2.a;
b = o1.b + o2.b;
}
void print() {
cout
That complex number example wasn't much harder to understand.. Just have to focus on all lines of methods.
Great explained
88,612 `this many people arent teh motivated ones ..this are the disciplined ones towards their goals
Thanks bhai bahut achi vedio ha
Can you please make a course on c++ multi threading
Bhai plzz stocks market ki algo banane ki series bana do plzz plzz plzz bhai🙏🙏🙏
best tutorial on c++
Set data by sum jo function hai usme complex jo hai wo koi data types hai na int ki trah
#include
using namespace std;
class employee{
int id;
int salary;
public:
void setid(){
salary = 18000;
coutid;
}
void getid(){
cout
Thanks harry bhai , ap bara sahi explain karte ho har chez
Bhai app payment gateway ko integrate kase kare in php par vedio bana dho...
Full tutorial
Thank You 🙏🏻
Thank u sir I'm following this playlist from the beginning and everything is clear to me
did u understand why he use complex 01 and 02 and how it change the value of a and b , i mean it is sooo confusing .
@@nimi5631 becoz unko ussi class ke objects bnane the esliye!
@@nimi5631 aur rhi baat a and b ki value change kese hui toh just remind the concept of structure, with help of (.) we can access that variable
@@nimi5631 follow up this code here I asked the user to enter the value of a and b and I also created a function only for output:- by declaring int am, bm;....follow up the below code here you'll get all your question answer and if you got any query then ask me I'll resolve it!
#include
using namespace std;
class imp
{
int a;
int b;
int am;
int bm;
public:
void enterdata(void);
void showdata(imp o1, imp o2);
void printnumber(void);
void foryou(void);
};
void imp :: enterdata(void)
{
couta;
coutb;
}
void imp :: showdata(imp o1, imp o2)
{
am = o1.a + o2.a;
bm = o1.b + o2.b;
}
void imp :: printnumber(void)
{
cout
Thank you very much sirji🙏❤️
I am from pakistan and thankyou soo much for the guidance you help alot ❤️❤️
Sir u r suprub...
Thank u so much
Awesome and heartwarming song.😎😎👍👍
Complex number will really make this program complex for 10th students and below. Me in 12th.
Jee padho
bhai main to commerce background se hu aur abhi 1st year main hu aur mujhe complex number ke baare main koi idea nhi tha but code dekh ke to samajh gaya but jab google kiya to samajh nhi aaya
code wala to dekh ke samajh aa gaya but wo actual math wala complex number nhi pata
@@--kakashi Keep it up bro!
I wish you were my teacher in my clg
Thanks a lot
Thanku bhai for making these videos ......helping me a lot😁😁😁
Thanks Harry Bhaiya
Thanks HarryBhai :)
Java ka Complete tutorial PLZZZZZ.... UR the best...waiting for the next video....
Can you please make a detailed tutorial on "HOW TO MAKE A BOOK APP IN THE LATEST VERSION ANDROID STUDIO." There are absolutely none videos about that on UA-cam right now.
Yes👍
I'm excited
harry bhai your videos getting much harder to understand I watched the videos twice but doesn't able to understand so I skipped those videos. Please make it easy to understand
THANK YOU SIR ❤️❤️❤️🇮🇳🇮🇳🇮🇳
0:43 Habits of a python coder part 1
(update) I mean giving the colon after a class
you are good vai, ap great ho vai, mera codding ka man apke baje sehi bana,
Congratulations for 2m family ❤️
Thank you, boss! Love you!
thank you sir for this lovely tutorials
sirr the course is awesomee!!!! can i please know how many tutorials are there in the course????
74
Very useful CPP course
Thank you very much
Aapki sabi videos suppppppperrrrrrrr se b uppppper
thank sir it really good
Nice explanation sir
Bahut achha video hai.
Thank you so much sir ❤❤
After 13 min :- my mind😵💫🤯
Nice explanation👍👍
Thank you sir ❤
Day-16
tut_25 ........................done
Thanks for the video sir...you often use rohan and lovish...are they your friends harry bhai
awesome tutotrial sir
You are best
3+4i means 3 + √-16
Plz can any clear the (complex 01,complex02 ) part of the code
sir jo apne obj of array me salary daali he usko bhi show krna chaiye wrna samne employee ko kya pta ki salary kitni daali he
Harry bhai please start dsa in c++
Thank you!!
This is the code which i have written
// to find sum of Complex numbers
#include
using namespace std;
class factory
{
private:
int a;
int b;
int c;
int d;
int sum;
public:
void read()
{
cout a;
cout b;
sum = a + b;
}
void read1()
{
cout c;
cout d;
sum = c + d;
}
void data_by_sum()
{
cout
Bro is mein passing objects by function kahan hai??
upr video ka title prho us me kya likha aur tum ne kis method se kiya ... tum ne jo kya wo simple method hai lekin is me Harry bhai ne passing objects as functions smjhaye hain jo k tumhary waly se different hai
Unity please
Sir would you ever start a series in Ethical Hacking?
Sir please continue Node.js tut.
Love you harry ✨💖
Aur ye ek orr bouncccerrr harry bhai ki or see...😂
thanks broo
didnt understand the setbysum function. why did u multiply o1to a and o2toa after equating it to a ?
mai smjh gya 😀
Function me ap setData Ka D capital lekte he agr small d lik le to correct Hoga i.e setdata ...is this correct or not
Yess ...You can use small and Capital both but first character should be small or underscore
u can but keeping the D capital is a good practice in programming since it helps in better code understanding
sir this is helpful i wanna employee id salary and dated of joining
Love you sirji
Sir ye wala video mai o1 o2 class method bahoot confuse kar diya...