kermi Posted October 28, 2009 Posted October 28, 2009 I have home work: Write block diagram and program in c++ builder what write whole number from 23 to 45. Sry for my english.. :( Thanks!!!! Quote
MaestroLuke Posted October 28, 2009 Posted October 28, 2009 #include <iostream> using namespace std; int main() { for (int i=23;i <= 45;++i) cout << i << endl; return 0; } should work with gcc,dunno about C++ Builder Quote
kermi Posted October 28, 2009 Author Posted October 28, 2009 Thanks but [Linker Error] Unresolved external '_Form1' referenced from D:\PROGRAMY\BORLAND\CBUILDER6\PROJECTS\PROJECT1.OBJ [Linker Error] Unresolved external 'TForm1::' referenced from D:\PROGRAMY\BORLAND\CBUILDER6\PROJECTS\PROJECT1.OBJ Quote
MaestroLuke Posted October 28, 2009 Posted October 28, 2009 Thanks but [Linker Error] Unresolved external '_Form1' referenced from D:\PROGRAMY\BORLAND\CBUILDER6\PROJECTS\PROJECT1.OBJ [Linker Error] Unresolved external 'TForm1::' referenced from D:\PROGRAMY\BORLAND\CBUILDER6\PROJECTS\PROJECT1.OBJ i'm sorry i am working with the gnu compilers,dunno about borland and msvc++ Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.