i would like help with the template i am writing for some reason i can't get it to work. I would appreciate help.

#include <iostream>
using namespace std;
#include <iomanip>


int()

{

cout << "This is a template.\n";

system(pause)

}

Recommended Answers

All 2 Replies

I won't even say anything. Just, Here :

#include <iostream>
#include <iomanip>
using namespace std;

int main()
{

cout << "This is a template.\n";
cin.get();
return 0;
}

thx but i got help from a friend it's all good now

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.