OK, I downloaded Borland C++ 4.0.
Now the problem is that when I start the Integrated Development Environment (by double clicking BCW.exe) and type and compile simplest C programs such as------->
[CODE=C]#include<conio. h>
#include<stdio. h>
int main()
{
printf("HELLO") ;
return(0);
}[/CODE]
then I get 26 errors such as-------->
1. declaration syntax error
2. Variable enum is initialized more than once
3. Variable void is initialized more than once
4. Variable _cdecl is initialized more than once
5. Too many errors or messages
Above five mentioned error messages are mentioned over and over again and they all constitue 26 errors.
I know I'm wrong somewhere and I even searched internet for possible source of error, but ended with no success.
PLUS, What are compiler flags? Do we need to pass them as arguements to command prompt to start BCW to support classic C programming?
PLEASE HELP...........
============
AmbrNewlearner
============
Now the problem is that when I start the Integrated Development Environment (by double clicking BCW.exe) and type and compile simplest C programs such as------->
[CODE=C]#include<conio. h>
#include<stdio. h>
int main()
{
printf("HELLO") ;
return(0);
}[/CODE]
then I get 26 errors such as-------->
1. declaration syntax error
2. Variable enum is initialized more than once
3. Variable void is initialized more than once
4. Variable _cdecl is initialized more than once
5. Too many errors or messages
Above five mentioned error messages are mentioned over and over again and they all constitue 26 errors.
I know I'm wrong somewhere and I even searched internet for possible source of error, but ended with no success.
PLUS, What are compiler flags? Do we need to pass them as arguements to command prompt to start BCW to support classic C programming?
PLEASE HELP...........
============
AmbrNewlearner
============
Comment