klimi
It is there
klimi
+ asking about other language is prohibited too
Anonymous
It's not.a language😂
klimi
Why
Because it is in the rules!
klimi
Python is not a language
klimi
Okay
Kumar Vipin
It is there
Sorry i will never do so again
Anonymous
Python is not a language
Oh. ... I think u r totally confused
Kumar Vipin
Oh. ... I think u r totally confused
Smriti her mean you can't ask doubt of any other programing language here. This is only for C, C++
Anonymous
Ok don't be so panic chill
Mat
#ot is there for a reason
Surya
Anonymous
Sudipta
What is the best ide for C and C++ in android system?
klimi
/ban @JoannaFoster323
klimi
Paste this to google search :)
Anonymous
Does anyone know how to create Linux desktop applications ?
Sasuke
Sasuke
And many more
Anonymous
U have experience?
Anonymous
Does anyone know how to create Linux desktop applications ?
Yes, in almost every popular programming language.
Anonymous
U know the ide environment and also how to proceed further ?
Anonymous
U know the ide environment and also how to proceed further ?
I'm sure there are enough tutorials on google.
Anonymous
I have been googling since past few days but not satisfied that's why asking help from experienced ones to guide me
Anonymous
Then have a look at C++ and qt for some GUI.
klimi
Oh hello grace
klimi
GRACE welcome
GRACE
Thanks
Lucky
😀
klimi
😀
Hi lucky
Lucky
Hello Klimi
klimi
Thanks
You're very welcome, please read the pinned message for rules
Vipin
Thanks Rose.
🐰🐾 سمیه
Dima
why
MᏫᎻᎯᎷᎷᎬᎠ
Why should I read this!??
🐰🐾 سمیه
Why should I read this!??
be patient and let me write my question. I thought it may took more space than what caption allows
klimi
Serioualy stop doing this
🐰🐾 سمیه
In alloc(), in if condition, I think allocbuf could be left out, because it is the zeroth element, and ALLOCSIZE is the100th element, then expression: allocbuf (zeroth element) + ALLOCSIZE (100th elemnt ) would be always the same (100). So, why allocbuf should be there when without it the result of the addition of those two elemtents, are still the same? is there any point that I'm missing.
🐰🐾 سمیه
in the same sense, I think in afree(), allocbuf could be omitted from the if function.
Mat
Do it
Mat
Print allocbuf and see if it will print 0
🐰🐾 سمیه
Print allocbuf and see if it will print 0
I think I got it, it's their adresses taking part in arithmetic.
🐰🐾 سمیه
Yes
Then an array name without [ ], is simply a pointer?
Mat
Then an array name without [ ], is simply a pointer?
Yes. Is the pointer to the first element of the array.
Dun
OK
🐰🐾 سمیه
this part about zero, I'm not getting it. would you please clarify?
Mat
But char *p = NULL; p == 0; //TRUE Is valid
🐰🐾 سمیه
int x = 7; int *p; p = &x; Is it valid?
Mat
You can try yourself
🐰🐾 سمیه
True.
🐰🐾 سمیه
Thanks Mat🌷
Anonymous
Hi
klimi
Hi
Anonymous
Group links are allowed or not.?
BinaryByter
No
klimi
@programminginc
BinaryByter
#ot is for them
klimi
#ot
klimi
Or approved
klimi
Anonymous
Hi What are the number of ways to instate an int with a consistent
BinaryByter
With a consistent?
BinaryByter
there are quite a few different initializers int a = 10; int a {10}; int a = {10}; auto a = 10; auto a = {10}; auto a{10}; int a (10); auto a(10);