i'm confuse either which line should i put the getch() to display the final result properly.When i refer to the book ,it mentioned about using namespace std instead of the conio & getch(),but my compiler is borland C++ ,some kind of old stuff and cannot use the using namespace std.
#include <iostream>
#include <conio>
void first ();
void second ();
int main()
{
cout <<"I am starting in function main.\n";
first();
second();
cout <<"Back in function main again.\n";
return 0;
}
void first()
{
cout <<"I am now inside the function first.\n";
}
void second()
{
cout <<"i am now inside the function second.\n";