Dima
What the fuck is this question 😝
I_Interface
Dima
I mean, it sounds funny
Dima
Sure, stl, the basics
I_Interface
Sure, stl, the basics
SDL - it's some kind of dynamic lib ?
Dima
It’s totally a different library
Sky
https://i.4cdn.org/gif/1560188948365.webm
Sky
Is this what india like
Dima
Lol.
Anonymous
Sure, stl, the basics
there is a course on udemy which teaches SDL first thats why I asked 🙄😅
Elnee
Nice feature
Anonymous
Is this what india like
nope it is not. Better you visit us if you are that Interested in Indians 😁
Anonymous
well that's very stupid
🤷‍♂ that is why I asked cause, Geeks for geeks shows STL first!
Anonymous
STL
thanks 😁
Dima
well that's very stupid
All courses are mostly very retarded
Dima
Do it your way
Anonymous
sure 😁, thanks
数学の恋人
https://i.4cdn.org/gif/1560188948365.webm
OMFG! That's beyond hilarious
数学の恋人
Everytime he's saying sir to a lady
Puneet
#include<iostream> using namespace std; class Person{ public: string name; int age; double height; double weight; }; void ModifyPerson(string); void passByValue(int); void passByRef(int &); int main(){ int num1 = 3; int *pNum = new int; *pNum = 5; void passByValue(int num1); cout<<"Value of num1 is "<<num1<<endl; void passByRef(int &pNum); cout<<"Back to the main"<<endl; cout<<"Value of pNum in main function "<<*pNum<<endl; double *pDouble = new double; *pDouble = 90.5; cout<<"Value in pDouble"<<*pDouble<<endl; delete pDouble; cout<<"Value in pDouble "<<pDouble<<endl; Person Ayush; Ayush.age = 21; Ayush.height = 5.3; Ayush.name = "Mittal"; Ayush.weight = 70; cout<<"Age is "<<Ayush.age<<endl; cout<<"Height is "<<Ayush.height<<endl; cout<<"Name is "<<Ayush.name<<endl; cout<<"Weight is "<<Ayush.weight<<endl; void ModifyPerson(Ayush); cout<<"Name is "<<Ayush.name<<endl; } void passByValue(int num1){ cout<<"In passByValue function "<<endl; cout<<"Value of num1 is "<<num1<<endl; num1++; cout<<"Value of num1 now: "<<endl; } void passByRef(int &pNum){ cout<<"In passByRef function "<<endl; *pNum = 50; cout<<"Value of pNum "<<*pNum<<endl; } void ModifyPerson(Ayush){ Ayush.name = "Anuj"; }
Puneet
can anyone tell me the error solution
Dima
No
Puneet
this was the question
Anonymous
Hi
I_Interface
Hi
welcome
Anonymous
I wonder what phones they use
Everyone is having different phones mi, Iphone, Moto, One plus .....
Zorrito
Anyone know how to do virtual folders in VSCode?
Anonymous
Language is easy with great concept
Rohan
Yes
Rohan
Thanks
Anonymous
Most welcome
Anonymous
This one...
Rohan
I want to purchase one
Rohan
C in depth or letusc?
Anonymous
Anonymous
I'm currently reading let us C.... this is okay
Anonymous
U should try" Head first C".
Rohan
🆗
Rohan
Do you Have it's full version book
Dan Yael
hello, maybe this is a noob question, but is there some reference to coding and structure standards for c++?
Mihail
hello, maybe this is a noob question, but is there some reference to coding and structure standards for c++?
What do you mean by "reference to coding and structure standards"? Like best practices?
Mihail
There's a great reference page en.cppreference.com
Dan Yael
What do you mean by "reference to coding and structure standards"? Like best practices?
yeah something like that. "Best practices" sounds like the thing i want...
Mihail
https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md
Dan Yael
thank you, that's very helpful
Dan Yael
thank you for answer me. i really appreciate it
Pro
guys if u really wish to learn programming and things then i wud suggest curated awesomelist on github
Pro
just google for "curated awesomelist github"
Pro
u will be amazed by the content
Dan Yael
wow, that's good stuff
Anonymous
Hi
Anonymous
anyone here who dous OpenGL?
Anonymous
http://this.is-a-professional-domain.com/5BVRwvi.png
Anonymous
https://hastebin.com/iporepazed.cpp
Anonymous
Please any cheat for bitcoin
Anonymous
Am sorry
Anonymous
I want to become a hacker
Anonymous
I started with Kali Linux
Nikolas
Anonymous
Can u help me continue
Dima
Naw
Anonymous
How
Dima
Just get a proper job, that’s what
Jonathan
Lol
Anonymous
Tq,👍
Vivek
I want to make project with C language so that I can write in my resume. Can any one suggest any good project / resource ? Please send your suggestions in personal.
Dima
You can’t expect your project to be writtten fast for resume, it will take some years 😜
TiMis
Ok
Anonymous
I need to learn about programming.. anyone can help me?
Anonymous
What do u need?
数学の恋人
I have a vector array of bool datatype now I want it to have all values true, can that be achieved?
数学の恋人
By default std::vector<bool> has false right?