Dima
Ming
Yes (mostly just watch it's walkthrough)
olli
Is it c++17 feature?
No this has been added in c++11
Anonymous
What is the best way to study programming ?
Mimi
What is the best way to study programming ?
https://www.sololearn.com/?ref=app-text3
Mimi
My suggestion
Harishankar
Harishankar
Mihail
Self ..... through youtube
Was true ..... only the first line tho
Anonymous
I mean like physically study. Im doing c# but how to you study. Like i watch videos but writing it out is to much so what other ways are there
Mimi
Basic are here only
Yes, but that's the way to get started
Harishankar
Was true ..... only the first line tho
Topic wise search through youtube best option
Mihail
What is the best way to study programming ?
Best way to learn is through experience, so make sure you get a hang of the basics and then start working on a project that interests you
Harishankar
I mean like physically study. Im doing c# but how to you study. Like i watch videos but writing it out is to much so what other ways are there
Starting with dry codes ( pen n paper) then go through the debugging..... practice more and more
Anonymous
Yes i also thought of writing out the code. Maybe i can go onto a website and then do the practices they have and then do then with pen and paper and then type over to see if its correct
Anonymous
Any other ways aswell? I also watch tutorials from youtube but what else.
Mihail
Just write code normally
Mihail
Compile it, see what it does
Harishankar
Any other ways aswell? I also watch tutorials from youtube but what else.
When u done with the basics go through the projects
Anonymous
Ive just read that writing it out make you remember it better
Harishankar
Literally no reason to use a pen
I agree but according to me use the dry codes firstly
Anonymous
When u done with the basics go through the projects
But how do you learn the basics without just reading it
Harishankar
But how do you learn the basics without just reading it
There were a lot of website who provides free module for practices how much you learn ....like. codechef, pencode , sololearn also
Harishankar
Go through them
Dima
Not so good
Dima
just start developing some own project
Dima
you’ll learn stuff faster and better
Anonymous
🙏 cool thanks
Harishankar
just start developing some own project
Like a small project ...of adding two integers in exe files
Dima
No
Dima
any pupil can do that
Mihail
learning is what you should be doing
Mihail
if you think just memorizing stuff will get you anywhere no it probably won't
Anonymous
Understanding is what you want and not memorizing
Mihail
yes
Mihail
so the pen thing is just dumb
Anonymous
Yeah i understand. Soo just doing small projects and stuff is ideal
Anonymous
Any c# developers here ?
Mihail
Any c# developers here ?
there are some, but it's ot
Mihail
there's a c# group tho
Anonymous
there's a c# group tho
Ive looked. Cant find it. Can you share it please
olli
Topic wise search through youtube best option
I don't like the YouTube option since everyone can post random videos. The quality of the content is in many case rather bad especially when it comes to C++
Mihail
Ive looked. Cant find it. Can you share it please
A fellow group membere recently made this @VCSharp, but it's still quite small
Anonymous
Ive found many nice ones
Anonymous
A fellow group membere recently made this @VCSharp, but it's still quite small
Np thanks🙏 i prefer small cause its more interactive
Mihail
Is that the only one
wait i'll link you to another too
Mihail
which is bigger
Mihail
can i pm you the link?
Anonymous
Sure thanks🙏
🐰🐾 سمیه
Formally, the C99 standard defines modifiable lvalues as: [...] an lvalue that does not have array type, does not have an incomplete type, does not have a const-qualified type, and if it is a structure or union, does not have any member (including, recursively, any member or element of all contained aggregates or unions) with a const-qualified type. could you please give an example for each one ( except for structure and const).
Billy Jean
Can anyone please recommend a good book to get started with C++? I already know a good amount of C.
Ariana
#cppbook
🐰🐾 سمیه
#cbook
🐰🐾 سمیه
#cppbook
🐰🐾 سمیه
Good bot
Ибраги́м
#cppbook
Are u trying to embrace the light ?
🐰🐾 سمیه
Ибраги́м
No 🙅‍♀
Still in the dark.
Anonymous
in C, how do i use the random() function within a defined interval?
Anonymous
for example, if i want to take a random integer within the interval (0,20) how do i do that?
BinaryByter
with % being the modulo operation
Anonymous
that's the answer that i got from someone else, but i wasn't able to understand the point of it
BinaryByter
Okay so first lets understand what % does
Anonymous
i know what it does
BinaryByter
yes, but lets understand why its here
Anonymous
i just don't get the point of using in this context
Anonymous
BinaryByter
yes, but lets understand why its here
So in germany, we had this thing where dividing a number would not be a real number but instead two numbers
BinaryByter
a "divided" and a "rest"
BinaryByter
this % stands for the "rest"
BinaryByter
note that the rest will never be bigger than what I divide through
BinaryByter
because if it is bigger, I can aswell add it to the divided bit