i have a program but how do i go about putting it in the code for the thread. i received a warning the last time and i appologize for that. what are the steps. i nread the faq but i still didn't understand it. what should i be pressing inorder to send it the right way
thanks

Recommended Answers

All 2 Replies

You read this http://www.daniweb.com/forums/announcement8-3.html

You make use of the "Preview Post" button to make sure that your code looks like this

int main ( ) {
  for ( int i = 0 ; i < 10 ; i++ ) {
    cout << i << endl;
  }
}

And not like this, where all the lines are over on the left, and any sense of the program flow is lost.
int main ( ) {
for ( int i = 0 ; i < 10 ; i++ ) {
cout << i << endl;
}
}

The only problem you had was you didn't code the code tags [ /code ] (but remove the spaces)

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.