Keith wrote:
I started off with a language way before DOS was around....
PC DOS was released with the original IBM PC in 1981. It says you're 25, so you can't be old enough to have worked on anything pre-DOS.
Keith wrote:
No such thing as draw circle. You have to tell it HOW to draw and where to start and finish. I'm planning to use Linux to use C/C++ and maybe some others
Ever heard of abstraction?
Code:
draw(circle);
That could very well be a line of valid C code that, well, draws a circle. Of course, there would be more lines of supporting code that define draw() and that set up the circle struct, but that's immaterial here.