#incluye <iostream>
usando std::cout;
ent main()
{
para (ent n = 0; n < 10; n++)
cout << "Por que no usar ambos juntos? :-)\n";
devuelve 0;
}
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Why not use both together? :-)
Hey, at least I made some effort to make it readable for English-speakers writers, so no grief now.
It is not uncommon for someone to be fluent on the net with a specific written language but unable to orally communicate with it.
As for the read/write stuff, it is easier to read than it is to write. This is because the brain is better at recognizing patterns than reproducing them.
As for the read/write stuff, it is easier to read than it is to write. This is because the brain is better at recognizing patterns than reproducing them.
Isn't it possible to -- though badly -- translate some of C++ with a load of #defines? Think I saw that somewhere. It might do more bad than good though.
Isn't it possible to -- though badly -- translate some of C++ with a load of #defines?
If you really wanted to, although I think your time would be better spent memorizing a few keywords and actually programming, not taking the time to #define every keyword into your own language.
If you can #define keywords in c++, technically that means that c++ is infinitely big.
Not necessarily, just because you give a keyword multiple substitutions doesn't mean that you added anything additional to the language. You can rename me or give me as many nicknames as you want, but I'm still 1 person:)
doesn't mean that you added anything additional to the language.
Doesn't have to.
You can rename me or give me as many nicknames as you want, but I'm still 1 person:)
Incorrect.
Assuming your name is ModShop, you are a person with 1 name.
If I were to nickname you John Smith, now you'd be a person with 2 different names.
Not the same as before.
You can rename me or give me as many nicknames as you want, but I'm still 1 person:)
wtf wrote:
Incorrect.
Assuming your name is ModShop, you are a person with 1 name.
If I were to nickname you John Smith, now you'd be a person with 2 different names.
#include <iostream>
#include <string>
usingnamespace std;
constchar* A = "C++";
constchar* B = "Spanish";
int main()
{
cout << "Which is bigger, " << A << " or " << B << "?\n";
cout << A << ( (A < B) ? " < "
: (A > B) ? " > "
: " = " ) << B << endl;
return 0;
}