Ludovic 'Archivist'
For example, Linux is free software, but the name is protected
Ludovic 'Archivist'
Same for Fedora
Ludovic 'Archivist'
You have to ask them for permission to use the name
Ludovic 'Archivist'
(in theory)
Anonymous
in that case i need to talk to my lawyer first xD
Palinuro
For example, Linux is free software, but the name is protected
we are going to call it devcpp pro, and when bloodshed stopped devcpp development, orwell rebranded it as orwell devcpp and continued the project with another name containing the original name
Ludovic 'Archivist'
Okay, that is a gif I definitely steal
Anonymous
Hi guys
Anonymous
Hi
Hey
klimi
Hey
Hey
klimi
How to eat an apple properly
Anonymous
Anonymous
Someone can help me?
Anonymous
Someone can help me?
Yeah tell me bro
Anonymous
I need create a auto executable pen drive,but I never try this before
Dima
What the...
klimi
If you are targeting windows, you can use autoexe
klimi
I mean autorun
Anonymous
I mean autorun
since windows vista it won't start instantly
Anonymous
This has nothing to do with c++
So,how can I Force a execution?
Anonymous
The only way is a physhing?
klimi
Maybe you can find some exploit in usb lib
klimi
Or virtual keyboard
محمد محمد
Sharing books is legal
klimi
Have you read the copyright part in the book
Anonymous
Maybe you can find some exploit in usb lib
I'm reading USB library from LISP
klimi
Hm
klimi
I don't know
Dima
Meme failed lol.
Sagar
Hey guys I m new to programming can anyone please tell me code for leap year in C
miko
sorry, what?
miko
leap year?
Prometheus
Hey guys I m new to programming can anyone please tell me code for leap year in C
It’s pretty simple. What’s the scenario? Quick and dirty: find the last year that was a leap year, hard code that in and add 4 years. If the current year matches that then run the appropriate code.
Sagar
Chakri😂
Sagar
You are chakri
Anonymous
You are chakri
Yes,I am chakri.I am a human being.
venkat
😂
Astral
Anyone prompted here for taking an input from me?😄
klimi
yay input
Astral
Hey
klimi
hey
Astral
hey
You know c language
Astral
sure, you?
Just started with it but very comfused about at some points
klimi
understood
Astral
understood
You are a beginner or master?
klimi
im admin
klimi
klimi
im not beginner nor master
Astral
im not beginner nor master
No i mean do you know c language exactly?
klimi
no
Astral
Okay
Astral
Hey mihail
Astral
Why we use int before main() And return 0???
klimi
int because we are saying we will return a value
klimi
return 0 means exit code with exit code 0
klimi
which means no errors
BinaryByter
the systems allows for an error code being returned from the executed program
klimi
and tbh, you can find this on the internet pretty easily
klimi
maxi you know git?
BinaryByter
yea
klimi
pm
Astral
But why not char flot main() Why only int?
BinaryByter
thats due to a convention in C++
BinaryByter
also, returning floats as an error code makes no sense because floats are encoded differently
Astral
But incase of void main?
BinaryByter
its possible in C
BinaryByter
but in C++ main is required to return an int
BinaryByter
wait is it?
klimi
i tink void is fine too
BinaryByter
nope
BinaryByter
<source>:1:11: error: '::main' must return 'int' void main() { ^ Compiler returned: 1