NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/books/nanocad/
Continue reading TEA BREAK WITH NANOCAD: COMMAND LINE BAR AND DRAWING YOUR FIRST LINETag Archives: First
TEA BREAK WITH C++: MY FIRST C++ PROGRAM
NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/easyseries/
- //my first c++ program
- #include <iostream>
- using namespace std;
- int main(){
- cout<<“hello world!”;
- return 0;
- system(“pause”);
- }
- /* This ends
- the file */
TEA BREAK WITH C++: Opening a New File and printing famous “HELLO WORLD”
NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/easyseries/
You can start a new file by selecting;
File > New > Source File OR pression Ctrl + N on your keyboard;
Continue reading TEA BREAK WITH C++: Opening a New File and printing famous “HELLO WORLD”