MᏫᎻᎯᎷᎷᎬᎠ
I'd like to know why though
Lat time I remembered, I spent a whole day just to compile my code
MᏫᎻᎯᎷᎷᎬᎠ
My hello world
Mihail
I'd like to know why though
Running an emulated DOS for all your applications instead of actually natively running them?
Mihail
Why not?
But why?
BinaryByter
dosbox does a great job at emulating dos
Mihail
Is it necessary?
MᏫᎻᎯᎷᎷᎬᎠ
BinaryByter
But why?
learning dos is important + turbocpp is a good compiler
BinaryByter
+ what elae would you use?
BinaryByter
you cant make all students install linux
BinaryByter
vs is not cheap
MᏫᎻᎯᎷᎷᎬᎠ
learning dos is important + turbocpp is a good compiler
Can't we just use it individually?!
BinaryByter
c::b is.. okay
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
You know what
Mihail
vs is not cheap
It's not cheap, it's free
MᏫᎻᎯᎷᎷᎬᎠ
I prefer to use notepad
Mihail
CodeBlocks is better in every regard
MᏫᎻᎯᎷᎷᎬᎠ
And compile with the cmd
Mihail
Like
Mihail
Literally no reason to use turbocpp
BinaryByter
BinaryByter
msvc included?
MᏫᎻᎯᎷᎷᎬᎠ
Yes?
I asked the same
BinaryByter
Literally no reason to use turbocpp
Well - as far as i was able to observe, the compiler does a better job, but leta not start a debate on that + its useless to students
BinaryByter
so yea, I agree with you
BinaryByter
but making c::b off as completely bad is kinda like calling the terminal horrible
BinaryByter
turbocpp*
Anonymous
hi guys
Foxner
I've semi-finished my C++ program now, and this is what it does. It renders the Mandelbrot in a window, so it can be moved or zoomed into in real-time. Thanks for the help.
Tom
looks pretty good!
Anonymous
Lol
Tom
Hey, can I post my open source project link here?
Calvin
x-special/nautilus-clipboard copy recent:///212787d42177043c86faf7415ce75542
Calvin
help me with https://t.me/c/1365587522/193112
Natnael
Hi there i trying to sort some insert items by bubble sort But I can't I declare the inserted items variable by structure.
Anonymous
Sorry to interupt.Wanna ask if you guys are also dealing with C++ Builder?
Natnael
Can you provide an example? I cannot reproduce your issue
Struct student { char id[20];char name[20]; }stu[100]; Void insert(){ } Sort it by id
olli
Struct student { char id[20];char name[20]; }stu[100]; Void insert(){ } Sort it by id
Assuming C, Do you mean like this? Where's your issue? And what has insert to do with it? int sortStudentById(const void * l, const void * r) { const struct student * ls = (struct student*)l; const struct student * rs = (struct student*)r; return strcmp(ls->id, rs->id); } qsort( stu, 100, sizeof(struct student), sortStudentById);
Anonymous
That ; is the error
Thanks I got that Then why it says unreachable code And shows no error
Anonymous
Cause you're using a prehistoric IDE
Prehistoric IDE is complex term for high school guy I know only it's full form Integrated Development Environment And I am using turbo c++ compiler So still cannot understand why it does not give error
Dima
use modern ides. that’s all.
Anonymous
I won’t warn for this, next time read the rules before asking
Sorry but most of guys here are inactive even when they are seen here Moreover I said I am just a 17 year old guy in 12th grades While other are matured programmers like my high school c++ teacher I just look them at it to focus admin Why so strictness
Anonymous
you cant make all students install linux
And a student who know nothing about Linux Will still prefer those which are advanced than it
Dima
well rules are rules, there are a lot of people who are breaking them. but you seem to be understanding these, so nothing is wrong 🙂
Anonymous
It’s just retarded and it won’t make you some expert/advanced in this.
Thanks Dima. But We have less alternative for c++ compilers As it's graphical view is suitable for most of students working Though it's outdated
Anonymous
well rules are rules, there are a lot of people who are breaking them. but you seem to be understanding these, so nothing is wrong 🙂
And what I said that was extremely rude admin Tomorrow was my c++ test so that was required even in midnight Already in previous test I got just 32 out of 50 that was so so bad in 12th grade
Anonymous
use modern ides. that’s all.
Modern ideas in c++ means??????????????,🤔🤔 It's same for all compilers either turbo c++ or code blocks
Anonymous
What is this admin Is it a compiler I have never read about it in any book
Mihail
@ rextester_bot
Mihail
It's a Telegram bot that compiles your code
Anonymous
It's a Telegram bot that compiles your code
Telegram bot really can compile my code So how I can use it Is it possible to use on smartphone
Davy
hi guys
Mihail
Telegram bot really can compile my code So how I can use it Is it possible to use on smartphone
yes i gave you the username open thata dn read what it tells you
Jussi
How close can you zoom before it gets blurry?
Foxner
Is it double precision-calculated?
I'm using long doubles. I have managed to get to the precision limit, but I didn't keep track of the "zoom level" at which it happened.
BinaryByter
long doubles don't really help much with precision
Foxner
Francisco
long doubles don't really help much with precision
Surely you can use GMP or something similar, but it's not that bad
BinaryByter
Well if you zoom in very deeply, long doubles won't do too much
BinaryByter
use a fraction based float type
Foxner
By the way, here's how it looked when I did reach the precision limit. I find it kind of cool.
Jussi
Yeah, nice
Foxner
use a fraction based float type
I'm not sure how I would do that. Besides, I'm planning on accelerating my code with CUDA soon. Would those fraction based floats be compatible?
BinaryByter
Sure - why not?
Foxner
Sure - why not?
I don't know what fraction based floats are. I'm still quite new to C++. Is it a standard C++ type?
BinaryByter
Its not
BinaryByter
you need to implement it yourself
Francisco
you need to implement it yourself
Then he'd better use long doubles hahaha