Comment on: Python: Writing Functions - Complete Guide
Python has their own website... Wih tutorials..
Comment on: What is the most useful programming language for indie hackers?
My same guess... Python.
Its one of the mlst forgiving noncompiling language
Comment on: I could really use some C++ help.
Arabs don't.
Comment on: I could really use some C++ help.
I tell you what.
I had 3 arabs copy my code by photo'ing with their phones without even a courtesy of asking.
I was not surprised to know that they literally failed the course because they didn't bother asking me to explain my code.
Comment on: I could really use some C++ help.
I haven't used C++ recently, so I'm really rusty with it...
Most recent language was embedded C, which is more indepth into microcontrollers than software.
Comment on: I could really use some C++ help.
iostream for in/out streams
fstream for creating/saving files
contractor.h/c is what you create to make the object of each contractor so that you don't have to heavily rely on functions.
so in the object you state:
class Contractor{
public:
[put accessible parameters here]
private:
[put fixed parameters here]
public:
[insert ALL prototypes for parameters]
}
then in your C file make the functions for the public parameters.
Now you made the object you can use them as "regular" namespaces
For example:
class SexObject{ public: void Vagina( int cocks);
private: float brain[]; }
in the C file
void SexObject::Vagina( int cocks){
if(cocks)
{
Other::Woman = Shut_down();
}
In the main file
int cocks = 1;
SexObject.Vagina(cocks);
//Is she quiet?
if(woman==shut_down){
cout<<"All is good"<<endl;
else
cout<<"Cock required"<<endl;
get.man();
Comment on: I could really use some C++ help.
include iostream.h
include fstream.h
include stdlib.h
include contractor.h
include contractor.c
That is all the hint I will give you.
Comment on: [Poll] Do you write hexadecimal numbers in upper- or lowercase?
It really is frustrating when I can't even get the RS232 transmission correct... I want to give up.
Comment on: [Poll] Do you write hexadecimal numbers in upper- or lowercase?
I use binary....
0b1011000000001011000111100101
because I actually want to see what is being transmitted, and test it against the oscilloscope.
Comment on: Today's date is 100/1000/10000 in binary
ISO?
Nah, we use American National Standard Institute, all else is terrorism.
Comment on: C++,Recursion,Three Number combination if their sum less than 10.
Those are only left shifts if you use them as logical operators. But in this case it is for namespace
Comment on: What's the cheapest place to register a website?
Your own house...
build yourself a server which will run a couple thousand dollars, then use a webhosting application like "apache"
Have your servers run and your only bill is the electricity bill.
Comment on: C++,Recursion,Three Number combination if their sum less than 10.
You might have it confused with a different language. "public" is used only on classes, this is a function type.
void main() should be sufficient.
Your cout syntax should be
cout<< "{" <<i<<","<<j<<","<<k<<"}"<<endl;
Comment on: List of 20+ free online programming/CS courses (MOOCs) with FREE certificates of accomplishments/transcripts/badges
Just click the "save" button below his comment.
Comment on: Why can't programmers... Program?
O...M...G....
Programming is not even my forté, but I can damn well program you an embedded system that can read/write digital/analog....
but ask me to build you an AFE... you better offer well because I will be hating myself if you don't let me use a developer board.
Comment on: Finding Entry Level Positions
You might have messed up the behavioral. Thats why they stopped contacting you
Comment on: Comparing C to machine language
for clarification... machine code is a form of VHDL? Because that's kind of how I see him explaining since that's what I had to do to program a 8086 chip instruction set...
They literally removed the pointer.... So no address to reference to....