Hello there.
I'm new on this forum, however I've used it as reference in past in my travels in vast and rich C++ world.
I'm reasonably familiar with C++ programming, however have a lot of questions regarding it, and thinking that somebody could help me answer in some of them in this post.
So, I'm really interested in programming, specially in C++ or C-like languages, but this is quite dry, not because I can't use it anywhere at this moment, but because I'm interested into how it interacts with hardware.
To be more specific I'm interested how does C/C++ works 'behind the scene', I think that if I would know more about this background, this would give me more understanding about how C language is working at all.
I know how to write basic scripts in C++, but they do not interact with other things on my machine or something at all. Max what I can do is console applications which basical is I/O. But I really interested how it works in machine itself..
I'm hoping that anyone could guide my where I could get more information about it, maybe some references?
Almost forgot, I would like to find out more about std libraries in C for example: iostream.h, fstream, .. etc.
How they work and how to apply them, how to read them, how to find something there that can be used?
Would appreciate it..
Thanks in advace.
By the way liked this forum for it's helpfull answers regarding tutorials and C++ stuff. Sorry my rusty English..
I used wrong word, sorry this my mistace.
Doesn't C language has Iostream libraries, or is it use cstdio?
I interested how does C/C++ works with machine(Computer) itself, how does processed works so we can get something out of basically nothing... Is that good enough?
C++ provides the instructions, the compiler takes the instructions and turns it into binary code. The operating system then loads the program into memory (when it's executed) through the memory loader. The CPU takes the binary code from memory, interprets the binary code as CPU instructions, and executes each instruction one-by-one.
Yeah, probably you're right.
I just wandered is here gonna be someone who could answer this..
Thanks anyway. I'm just interested in this thing really deeply..
Maybe then you could give me a direction on what book should i seek for?