Neso Academy is not just a KZbin channel .... it is a purely academic program..such a gem🤩😍
@suleimanmohamedabdi42773 жыл бұрын
I am astudent of telecom engineering university in Somalia 🇸🇴☺ really #neso academy helped me as much as I will thank you 😊🙏 you my best teacher ❤
@lukaskahare28289 ай бұрын
Good Channel for C++ Teaching , excellent Work
@rajeshprajapati66622 жыл бұрын
08:39 ival is an object ? I thought it was a variable. Both are same or any difference ? Please let me know.
@anelyzakaria6313 жыл бұрын
Loving these videos! Cant wait for more on C++!
@santanupradhan50173 жыл бұрын
We can declare constant reference to assign constant value. Like const int &r1=10;
@dipeshsamrawat79573 жыл бұрын
I love Neso Academy ❤️
@asif49043 жыл бұрын
Sir please upload daily eagerly I am waiting for next video's
@mdimadullah63653 жыл бұрын
A lot of thanks sir keep always...
@yusufmalik58602 жыл бұрын
very well explanaid
@maazsiddiqui33262 жыл бұрын
so it means it is impossible to do swapping using references right?
@rajeshprajapati66622 жыл бұрын
why ?
@rajeshprajapati66622 жыл бұрын
// C++ program to swap two variables using a // user defined swap() include int main() { int x = 1024, y = 1025; int &refx = x; int &refy = y; printf(" Before Swapping: x = %d, y = %d", refx, refy); int temp = refx; refx = refy; refy = temp; printf(" After Swapping: x = %d, y = %d", refx, refy); return 0; }
@rajeshprajapati66622 жыл бұрын
see above code, is it not right ? it's working fine.
@jagan_217 Жыл бұрын
@@rajeshprajapati6662 here in c++ having 49 video's its complete of course??? Or is there plzz telll
@rajeshprajapati6662 Жыл бұрын
@@jagan_217 The course is not complete.
@vikrantpatel28903 жыл бұрын
Please make tutorials on python also 🙏
@luqmanmahmudobar33393 жыл бұрын
Sir for c++ you added your channel only 27 videos so is that means you completed this course or steel some lesson were there to upload here ?
@sanskritivats49873 жыл бұрын
It's a running course dear .
@karimmuhammad70512 жыл бұрын
when i declare a reference, is it a new variable in memory that has a new address or it is just a new name?
@rajeshprajapati66622 жыл бұрын
Yes and no and it depends.
@MrYttips3 жыл бұрын
Sir pls thoda sa vs code ki screen zoom kar diya karo sir because codes are looking small
@monicabattacharya64163 жыл бұрын
you have stopped DBMS 1 month ago . please start that course 🙏🏼 . Don't stop it.
@Robot404_3 жыл бұрын
Why use a reference? Why not just use the original variable instead of a copy that contains the same value...
@motivationalquotes_192 жыл бұрын
P
@rajeshprajapati66622 жыл бұрын
References are needed for operator overloading, copy constructors, copy assignment etc.
@PROFESSOR-18-ABM Жыл бұрын
Sir You told that we can't bind a reference to an already refered initializers , But here i3 is already bounded to ri but u bound it again with r3.