Vv
I am talking about learning concept
Vv
Concepts*
Vv
And practicing on hackerrank
Jussi
You dont learn by reading
Jussi
You need to code too, and hackerrank exercises are pretty good fir that
Vv
I am getting a list of errors😅😅😅
Vv
Jussi
Yeah just start from the first one from top
Vv
Vv
Jussi
It might be the std namespace that is makibg it not work
Vv
Should i remove "using namespace std"?😅😅
olli
Jussi
Actually
Jussi
Your problem is described here
Jussi
https://stackoverflow.com/questions/18158094/fixing-c-multiple-inheritance-ambiguous-call
Vv
Ah let me see
Anonymous
/rules
ENTP
Guys please who knows of any good book to start learning c++ graphics for complete beginners?
Anonymous
Socket windows library for c?
Bader
#question4devs Mac vs Linux for cpp?
Anonymous
Plz answer me
Bader
aw man I had a link from lmgtfy for @FedericoMattt
Bader
@KlimiCZ May I have link privileges please?
klimi
what?
klimi
oh
klimi
http://lmgtfy.com/?q=socket+library+c
klimi
Bader
@FedericoMattt ^^ that's for you :D
Bader
Dima
Dima
Xcode rules
Dima
smoothest ide ever
Bader
was using it, pretty nice so far
Anonymous
fake news
Anonymous
ed is the smoothest ide ever
Dima
yeah yeah yah
Anonymous
Mat
Bader
Dima
hackintosh4life
Bader
seriously thinking about switching to linux
Dima
from mac?
Bader
mayeb... or dual boot
Mat
best point ^^
That's not the best one, but it let you try itself without a fee
Dima
I got installed three linux distros on mac lol
Dima
multiboot
Bader
oh awesome
Dima
also ubuntu works pretty good in vm
Mat
Mat
So many new people!
VVex
hi all^^
klimi
welcome all
Ибраги́м
Dependency management with CMake and git
https://foonathan.net/blog/2016/07/07/cmake-dependency-handling.html
https://redd.it/9284h5
@r_cpp
klimi
thanks
klimi
Gn
klimi
Welcome
Anonymous
Hi all, I am looking for a refresher of OOP concepts of C++, I can't find any short and brief but thorough text. "The C++ programming language" by bjarne is too long for the purpose.
Jussi
Arjun
How to get a recap of c++ ?
I studied it but don't remember much of it
Anonymous
I don’t know how to stop input by enter enter/return key in terminal using while(getline(cin,s));
Anonymous
Anonymous
till the code compiles
Anonymous
#include<stdio.h>
int main(){
int number=50;
int *p;//pointer to int
p=&number;//stores the address of number variable
printf("Address of p variable is %u \n",p);
p=p+1;
printf("After increment: Address of p variable is %u \n",p);
return 0;
}
Output
Address of p variable is 3214864300
After increment: Address of p variable is 3214864304
mark
Anonymous
how is it so
Anonymous
if
Anonymous
p=5
Anonymous
+1
Anonymous
=
Anonymous
6
Anonymous
then it should occupy the same space
Anonymous
right
Anonymous
Chop some part off?
Anonymous
can anyone tell me ?
Talula
can anyone tell me ?
Depends on language in some languages you have to have (5+1) = 6 but in other languages 5+1 == 6
Talula
So I don’t get your question.
Anonymous
I mean to say
Anonymous
if I I increment the pointer value by 1 then how come it's incrementing by 4