Anonymous
*sigh*
Anonymous
just pass me the gun
Anonymous
im going to end it all here
Samuel
*gives him the gun*
Anonymous
Anonymous
bingo
Zero
#ot
Anonymous
/notes
Anonymous
But sometimes it give an error importing a file
Paras
When we say the processor is 64bit does it mean all the registers on the processor are 64bit?
klimi
64 means it operates with 64bit at once
Anonymous
The CPU can address registers of size 64 bits. But I think the practice, much less of those bits are being used.
Javier
#ide
A. Salah
human
A. Salah
#item cpp
klimi
#cpp
A. Salah
#cpp
A. Salah
thanks
klimi
Np
olli
When we say the processor is 64bit does it mean all the registers on the processor are 64bit?
processors that have datapath width and memory address width of 64bit. "Does it mean all [...]" no, on modern cpu's support "vector" registers, that are 256 or even 512 bit wide
⠠⠍⠥⠓⠁⠍⠍⠁⠙⠽⠥⠎⠥⠋
olli
You rolled 5!
reminds me of public GetRandomNumber() { // Chosen by a fairly rolen dice return 12; }
Anonymous
#dice
Anonymous
/dice
Anonymous
Damn it, no dice
⠠⠍⠥⠓⠁⠍⠍⠁⠙⠽⠥⠎⠥⠋
e++
klimi
/dice
You rolled 2!
Anonymous
e++
Trying reading. Now my jaw is locked. E e eeee
Anonymous
You rolled 2!
Lol. I finally figured the magic behind the dice roll
Dima
lol never knew about /dice command
Dima
/dice
klimi
/dice
You rolled 1!
Dima
i am number 1
Anonymous
lol never knew about /dice command
Lol. Does not exist 🤣🤣🤣🤣
Anonymous
It is manned by one committed user
Vikram
I am just the beginner of c From where I should start my journey in c
Vikram
Anyone plz guide me
Ariana
## Rules #pinned * You are not entitled to an answer, getting angry about not answered questions will get you warned. * Not checking your problem in google (or any other search engine) first will get you a warn. * Asking for something that is in the pinned message right after joining WILL GET YOU BANNED. * C/C++ discussion preffered (assembly also allowed), asking about other languages (or groups for other languages) right after joining will get you BANNED. * Reverse enginnering, hacking and related topics are allowed, but asking to hack facebook, instagram, etc. is NOT allowed. Also if you ask "how to become a hacker" and obviously have zero knowledge on anything related to that you may get warned or banned. * Legitimate requests for help on code and programming questions are welcome. A request is considered legitimate if it describes your problem, what you've done so far and what went wrong. Requests such as "write my program" or "do my homework" are never considered legitimate. Asking not legitimate questions will result in a warn or ban. See https://stackoverflow.com/help/mcve on how to write good questions. * Asking for book recommendations is ok, but "pls give pdf book" is not allowed, find books by yourself. Posting illegally copied books (or links to those books) is also not allowed. * Only English language is allowed, if you speak shitty English or don't understand anything in English YOU WILL BE BANNED. * A little bit of programming related memes, jokes, shitposting are allowed. * NSFW content (porn, nudity, etc.) is not allowed. * Spamming/advertising (job posts are also ads, so ask an admin before posting) will grant you a warning or an immediate ban if you do it right after joining. * Religion, politics and ideological topics are forbidden. * Long code snippets must be posted via a snippet website(links below), posting pictures of code and posting long snippets in the group is not allowed. * If you encounter a problem, while using turbo C++, you will not be helped, use another more modern IDE. * Don't post compiled executables, that is obviously a security risk ## Resources About asking good questions: * [English](http://www.catb.org/esr/faqs/smart-questions.html) * [Translations](http://www.catb.org/esr/faqs/smart-questions.html#translations) For posting long code snippets: * [GitHub Gist](https://gist.github.com) * [Ubuntu Paste](https://paste.ubuntu.com/) * [Pastebin](https://pastebin.com) ## Reports If you notice any forbidden content, please use the /report command while responding to the offending post to report it to the admins.
wait this isnt pinned?
Roxifλsz 🇱🇹
wait this isnt pinned?
Hmmm, seems like I accidentally pinned another msg
Roxifλsz 🇱🇹
I have no idea how that even happened
Paras
/dice
/dice
Paras
Can a c program theoretically crash a cpu or even destroy it?
Ariana
yes
Ariana
It’s called a kernel exploit
Paras
Yeah well
Ariana
Or overheating and melting cpus
Paras
Ofc not....but seeing how C has the ability to talk directly to the hardware....I thought maybe? 🤷🏻‍♀️
Dima
some cpus have built-in stuff to prevent it overheating much
Dima
but its ez to burn the old ones
Dima
well with some tricks you can even burn new ones
Ariana
Like
Dima
melting cpus won’t make you ethical hacker
Dima
😂
Ariana
if you insulated it And removed the heat sink and fans Overdrive it :>>>>>
Ariana
umm
Ariana
tf
Dima
lol while reading this conversation I;ve named my class MeltdownManager
Dima
gg
Ariana
mdr
Anonymous
How can I save the state of a program in c++
B K Sachin
What is a major difference between windows and Linux os
Anonymous
For example #include <iostream> int main() { int x; std::cin >>x; std::cout <<x; return 0; } My question is if I enter Input 23 for example How can I recover the value when I close the program and open it another time
Badugar
Save the result in a file
Anonymous
OK with what library or keyword
Anonymous
Or library function
Onkar
Use file pointers FILE * open, write, close,
Anonymous
Yeah
Anonymous
Thanks
Anonymous
I got it
Onkar
Welcome
Dhaif
How can I change it to while loop ___ #include<iostream> using namespace std; int main() { for (int x=11;x>1;x--) { for (int z=1;z<x;z++) cout<<"*"; cout<<endl; } }