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
Talula
So friends can you give some tips about coding to me!
Sure... start a project on your own small one and work on it, get all the information by Googling...
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
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
Dear a person who wants to learn how to program doesn't need Windows SDK.
what? if you want to create program for Windows you need this shit
Dino
Hai iam a computer hardware engineering student iwant to study software making using c or cpp language
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
Vyacheslav
Move to C#... :)
ok, but i'm afraid i'm too old for this
Talula
Nah I'm 30 too (but not a virgin) I started using C# like 4 years back.
Vyacheslav
i wish i didn't know C++ too well, but instead had a life
R.
i wish i didn't know C++ too well, but instead had a life
Why do you think u would had a life??)))
R.
Moreover
R.
Tnn
Talula
i wish i didn't know C++ too well, but instead had a life
Life is boring and full of responsibilities... I have a son, I have to make sure he is ready for school in the morning, go to office, come back home at almost 8:00 PM and cook dinner... not really fun.
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.
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
Anshu
What is difference between void main() and void main(void)
Talula
void means "nothing"...
Talula
you can type main() and it means void main(void)
Daniele°
main() != void main(void)
Daniele°
void main(void) isn't standard
Daniele°
main() == int main()