I am new to C++ and so how do i start my first programs. Can some one tell me what i need to do first.
Also can someone send a free online C++ book?

Recommended Answers

All 2 Replies

this is a pretty standard first program:

#include <iostream.h>
int main() {
  cout << "Hello, World!" << endl;
  return 0;
}
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.