Nehemiah Aklil
😩😩
K
excuse me, does anyone have a link for html channel?
Anonymous
/saved
Anonymous
/saved
Anonymous
Good morning
S.
noooo
Well basically it's just how to link DLLs in codeblocks. You may start from a simpler example.
S.
Im listening
😂 Google is a much better tutor
ONCE
I'm listening too
Anonymous
Deep learning in one medium: combining Code, Math and HTML. Open source book for everyone
Anonymous
http://d2l.ai/index.html
S.
I'm listening too
Just -L -l options ... not much to say actually
Anonymous
Hi guys I want to be an android app developer,where do I start?
S.
Join an android group and ask guys there 😆
Pratham
/get #pointers
Pratham
Okay
Pratham
...
Pratham
/get #pointers
Guys...I have a doubt...if I want notes on pointers.. should I send like this👆...or is there any other way?
Pratham
Is there any continuation for this?
Pratham
Okay...what next?
Pratham
Thanks for the notes.😂
Walter
/get best-book
Walter
/get cpp
Walter
/get findprojects
BinaryByter
/warn command spam
MSB
What's this all about? Can anyone explain?
Anonymous
What's this all about? Can anyone explain?
Hmm what do you think it's about?
MSB
I don't know. I'm new here
Anonymous
"List of notes in C/C++:"
Anonymous
Look closely
MSB
Yeah! But how to access them is my question.
Anonymous
"You can retrieve these notes by using /get notename, or #notename" look even closer
MSB
/get gcc9
Chinmay
/saved
Chinmay
#findprojects
Chinmay
#cpp
Werewolf
#html
klimi
#html
Nice try!
Nandan
Hello guys, I made a simple snake game using c, All the rules are normal... Now I want to implement a new rule... der are two boundary wall one after other , if snake touches the inner boundary the size of snake decreases by 1 point, and if snake touch the outer boundry, you are out. Can u tell me d logic for this?
Nandan
Can I send code Here in the group..? Is it allowed?
Anonymous
No, use pastebin
Nandan
Boundaries are defined for this?
in my program snake dies if it touches the inner boundary...
MSB
Inner boundary and outer boundary values defined? If that's defined, your logic will be simple. Even if your code uses different boundary sizes for different screens (I'm not sure). But logic remains the same.
Nandan
حسين
Hello everyone here
Anonymous
Hi
Dima
lol
klimi
Hi
Anonymous
Thanks
Anonymous
Who can tell me about best book for porgraming
Dima
google.com is the best book
Pratham
Guys...I have a doubt
Pratham
Whether function main() is a library function?
Pratham
Or user defined function?
Mat
Whether function main() is a library function?
Main a library function? Why a library should have the main function?
Anonymous
maybe a symbol.defined by linker
Pratham
Main a library function? Why a library should have the main function?
Okay. If it's a USD then why is the function name 'main' always?...we can write any other name right?...and why is that the execution starts only from main function?
Ariana
compiler finds for main to start execution
Ariana
like you can imagine it as the compiler calling main();
Pratham
That means main is predefined?
Ariana
no
Mat
Libraries are meant to be called, not to be the starting point
Ariana
You defined it
Ariana
look compiler needs to know where to start execution The function name, main, is reserved to define where the execution starts
Ariana
You can have programs without main, just kinda boring
Pratham
Ohk...I got the answer
Pratham
Thank you
S.
Anyhow, the entry of a program can be specified by the linker
S.
Like this