:0
I passed up Emperor Niya without realizing it. Am I now to be executed?
Printable View
:0
I passed up Emperor Niya without realizing it. Am I now to be executed?
By the way, I had some boudin for lunch. Nom nom nom.
I've been attempting to learn C++
It's not going to well. I can't even get my solutions to build, they all fail.
Simple stuff like:
Code:#include <iostream>;
int main()
{
std::cout << "Hello, World!" << std::endl;
}
Unfortunately I receive this error:
Code:1>------ Build started: Project: helloworld, Configuration: Debug Win32 ------
1> helloworld.cpp
1>c:\users\pc1\documents\visual studio 2010\projects\helloworld\helloworld\helloworld.cpp(7): warning C4067: unexpected tokens following preprocessor directive - expected a newline
1>c:\users\pc1\documents\visual studio 2010\projects\helloworld\helloworld\helloworld.cpp(7): warning C4627: '#include <iostream>': skipped when looking for precompiled header use
1> Add directive to 'StdAfx.h' or rebuild precompiled header
1>c:\users\pc1\documents\visual studio 2010\projects\helloworld\helloworld\helloworld.cpp(13): fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "StdAfx.h"' to your source?
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
I fail at other programming languages.
I would really just like to expand my programming knowledge.
What language should I learn that isn't as difficult as C++?
None. C++ is the one to learn. If you understand that, everything else will be easy. So many languages derive from C/C++ in so many aspects that it is practically the root language of all the popular modern languages. On the other hand, C++ is so sprawling that even MS doesn't use the whole thing. They use a "rational" subset of the total language. Unless you intend to be a language lawyer, you won't need the whole thing, either. I've never bothered with the Standard Template Library, which didn't show up until after I had moved on from the language. What a beast. You can do lots of things with it, but to really know it is probably not worth the effort.
So, what is boudin? If that's what's in the picture, it looks like a sausage made with rice (unless those things are moving, in which case I don't want to know).
Occasionally somebody would add beef or chicken, but very rarely.
C++ is the way to go - learn C++ - very worth while
I wonder why tutorials leave out a lot of stuff. Is it just that they're out-of-date.
The tutorial I'm referring to is the one in the c++ subforum here on vbforums.
We have a C++ forum here - and a sticky for a Info: Tutorial
http://www.vbforums.com/showthread.p...-Info-Tutorial
It has a link for:
http://web.student.tuwien.ac.at/~e02...mp_start.xhtml
Look at that tutorial - that's all I ever needed to get started (about 18 months ago I started using C++).