Talula
it wouldnt be hard to download a compiler
Yes and configure it, problem is with people who are new it's hard for them to understand how to link things and configure the editor etc... Dev-C++ solves that problem.
Dima
yeah thats annoying in some ides, like you must setup it yourself, but in micro$oft's vs its all setup already too
Talula
You mean VS C++? But it's Bulky.. it's like 14GB.. that is pain.
Talula
Dev C++ is like small...
Anonymous
Hey
Anonymous
I’m don’t know coding
Anonymous
But I’m interested to learn coding
Anonymous
So friends can you give some tips about coding to me!
Anonymous
I want to know how to start and where to start
Anonymous
I thought I’ll learn coding on code academy
Dima
and books
Dima
Anonymous
I’m a beginner
Anonymous
I’m know nothing about coding
Talula
Like make a program to print you table of any number, so if you enter 2 it should display
2 x 1 = 2
2 x 2 = 4
..
2 x 10 = 20
Anonymous
But my passion is to code
Anonymous
I’m just confused about this
Talula
Doesn't matter I would suggest going with Python (Though I hate that language but it's good for beginer).
Dima
c#
Anonymous
Okay
Anonymous
Where I can learn it
Igor🇺🇦
You mean VS C++? But it's Bulky.. it's like 14GB.. that is pain.
It's several Gbs , not even close to 14Gb for minimal installation . You can have a lot of different libraries and languages , that may add up to 90Gb , but you never need all of that.
Anyway - Code::Blocks is very small, but is modern and similar to CodeDev++
Dima
in minimal version with c++ and win sdk it takes ~6gb so its better
Stanislav
Stanislav
4-6 gb for VS2017 with C++
Talula
Yes 4 to 6 GB compare that with 250 MB...
Stanislav
Talula
Dear a person who wants to learn how to program doesn't need Windows SDK.
Dima
resistance is futile...rip devcpp
Talula
I'm not supporting it anyway, it was my suggestion for someone who is a beginner.
Dima
beginner must fall into that at the first place, like setup your own compiler settings first
Dima
lul
Dima
hardcore
Anonymous
is their any one interested in android programing? I need some consulting
Stanislav
Talula
Dino
Hai iam a computer hardware engineering student iwant to study software making using c or cpp language
Talula
Dino
😁😁👐
Vyacheslav
Hi, i'm a veteran C++ programmer with 12 years of experience who is also a 30 year old virgin and wants to catch up with life
Talula
Talula
Nah I'm 30 too (but not a virgin) I started using C# like 4 years back.
Vyacheslav
Top T : Trollface Was Real
R.
Vyacheslav
i wish i didn't know C++ too well, but instead had a life
R.
R.
R.
Moreover
R.
Tnn
Talula
I wish I could simply program, my dream is that I don't have to deal with anyone in the world, I get my food and internet and that is all I need.
𝖘ͥ𝖚𝖌𝖆ͣ𝖓ͫ
Which language I should learn first...c or c++...please guide me
Talula
C... C++ is extension of C with complex OOP code added.
Anonymous
How can i change size of some text in C?
Talula
So to know C++ you have to know C anyways.
Talula
Anonymous
Windows 7
Talula
Windows 7
You first create Device Context pass the window handle to it and it'll send you DC...
Talula
https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-getdc
Talula
Once you have the DC you can use it to paint your own text by creating a Pen and Brush.
Talula
Use the Handle of the Pen and Brush to WriteString... with pointer to text you want to display.
Anonymous
Will this work in TC ?
Anonymous
Or is there any other simple method of doing this?
Talula
You want to change font size in CLI?
Talula
That isn't possible
Talula
Unless you write each Alphabet using blocks or something.
Anonymous
OK
Anonymous
Thanks
Dima
Anshu
What is difference between void main()
and void main(void)
Talula
Talula
void means "nothing"...
Talula
you can type main() and it means void main(void)
Daniele°
Daniele°
main() != void main(void)
Daniele°
void main(void) isn't standard
Daniele°
main() == int main()