Re: Errors in compilation of simple programme
On 9 Apr, 17:23, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
ftjons...@gmail.com wrote:
[..]
I created a new project (but yes, I am using "Console Application") to
see what happens. I have made a Hello World program previously and it
required the -- #include "stdafx.h" --- header to work. I tried doing
away with that (that is taking away use of precompled headers) for the
sake of making it more simple. The first hello world program I wrote
compiled when I tried the first time, but now when I tried building
again for the sake of double checking it gave me this error i have
previously stated.
Are you trying to use the same project or did you create a new one
from scratch?
Again, try recreating the project from scratch, in a new location
(let VStudio generate all the stuff for you). Does it compile if you
don't change anything? If it does not, your installation is somehow
screwed up now (compared to what it used to be); try reinstalling.
If it does compile, make incremental changes and see where it stumbles.
Post your findings.
(I checked that precompled headers were on, as when
I compiled it the first time) This is the second version of the
program, converted to english with stdafx included (but still not
compiling, same error):
#include "stdafx.h"
#include <iostream>
using namespace std;
int main ()
{
int a = 0;
cout << "How old are you?";
cin >> a;
cout << "Ahaaa... you're " << a << " years old.";
return 0;
}
I will keep checking things. For the record, I am using Visual Express
(may buy the full version if I keep having problems).
Express or Pro or whatever shouldn't really matter. The program is
so simple that no features that do differ between them are not used
here.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask- D=F6lj citerad =
text -
- Visa citerad text -
I have been tooling around with it for a while now, made several new
versions from scratch, and also tried letting the VS setting up for
me. Some code in different versions, all giving me the same warning
and cout as an undeclared identifier (precompiled headers on, console
app):
-------------------------------------------
#include "stdafx.h"
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
----------------------------------------------
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int a = 0;
cout << "How old are you?";
cin >> a;
cout << "Ahaa...you are " << a << " years old.";
return 0;
}
--------------------------------------------