Hi people , i have just started using Bloodshed DevC++ 4.9.9.2 to write and compile the C/C++ programs. The problem is that its giving errors when there is no error in the program.... For example look at this program....
It is the most simple program but it is still giving 3 errors in this program.
Whereas the same program works fine in the TurboC3(DOS based) compiler...
Can someone tell me how to make programs run in BloodShed?? Any user of bloodshed can help me as it may require to change some settings in it...
Thanx...
Code:
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<"Blah";
}
It is the most simple program but it is still giving 3 errors in this program.
Code:
1. `main' must return `int' In function `int main(...)':
2. clrscr' undeclared (first use this function)
3. Each undeclared identifier is reported only once for each function it appears in.)
Can someone tell me how to make programs run in BloodShed?? Any user of bloodshed can help me as it may require to change some settings in it...
Thanx...