i have .cpp file which has hello world example in it.
i don't know how to compile it from command line
any help please
thanks.
|
Go4Expert Founder
|
![]() |
| 9Jun2007,18:54 | #2 |
|
Which compiler you are trying your hands on?
|
|
Newbie Member
|
|
| 9Jun2007,20:45 | #3 |
|
gcc
|
|
Team Leader
|
![]() |
| 9Jun2007,22:32 | #4 |
|
Code:
#include <iostream>
int main ()
{
std::cout << "Hello, World" << std::endl;
return 0;
}
Quote:
Originally Posted by Command Line |


