Skip to content

I learn and create C/C++ programs and put here, I hope you like it

Notifications You must be signed in to change notification settings

BhJaipal/Programming

Repository files navigation

Programming

Visual Studio Code C++ C GitHub GitHub stars Jupyter

Learning C++

Syntax

#include <iostream>
#include <string>

/**
 * @param name your name
 * @example
 */
void function_name(std::string name) {
    // code here like
    std::cout << "Hello World" << std::endl << "I am " << name << std::endl;
}
int main() {
    function_name();
}

### CMake Use

```cmake
cmake_minimum_required(VERSION 3.28.3)
project(CMakeLearning)
add_executable(${PROJECT_NAME} Student.cpp)
```

```bash
cmake CMakesLists.txt
make all
./CMakeLearning
```

Hello World

I am Jaipal

About

I learn and create C/C++ programs and put here, I hope you like it

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published