Skip to content

pawankumar1310/First-C-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C++ First Project

This is first C++ Project - Hello World

In this project, we have printed Hello World.

Prerequisites

  • C++ IDE

    • VS Code (Visual Studio Code)
    • Install following extensions : -
      • C/C++
      • Code runer
      • C/C++ Makefile Project
    • Go to manage setting and open Command Palette,type create c++ project and select folder for creating project.
  • MinGW Compiler

    • MinGW-w64
    • Now you need to set the environment variables, so for which you need to paste the bin path.In bin folder "make.exe" must be otherwise you will find the error such as "'make' is not recognized as an internal or external command".
    • To avoid above such error we simply do following : -
      • Make another copy of C:\MinGW\bin\mingw32-make.exe file in the same folder.
      • Rename the file name from mingw32-make.exe to make.exe.
      • Run make command again.
      • For more details click here.

Compile and Run Program

After generating project and implementing the code we simply do following two steps : -

  • To Compile the Program, type
  make
  • To run the Program, first change the directory and go to output folder where your 'main.exe' file exits.For changing the directory,type cd output and for running the Program,type
  ./main

where ./ represents present working directory and 'main' is the executable target file.

Output

First_C++_project

About

This is First C++ Project - Hello World.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published