Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Директиви Препроцесора | Початок роботи
Вступ до C++
course content

Зміст курсу

Вступ до C++

Вступ до C++

1. Початок роботи
2. Вступ до операторів
3. Змінні та типи даних
4. Вступ до потоку програм
5. Вступ до функцій

bookДирективи Препроцесора

Щоб додати зовнішні файли до вашої програми, ви повинні використовувати директиви препроцесора. Це команди, які керують препроцесором, інструментом, що трансформує код перед компіляцією. Синтаксис для більшості директив препроцесора такий:

h

directive

copy
1
#directive parameters

Примітка

Стандартні файли приєднуються за допомогою кутових дужок < >, але ви також можете створити власні файли і підключити їх до вашого проекту аналогічно, використовуючи подвійні лапки " ".

h

include

copy
1
#include <name>

How #include works

Look at the code below and try to run it.

How #include works

Look at the code below and try to run it.

cpp

main

copy
1234
int main() { return 0;

You get an error of a missing }. This is done on purpose to show how the #include works. We can create a separate file containing only the } symbol and include it in the main.cpp file using the #include directive.

cpp

main

h

header

copy
1234
int main() { #include <header.h>

The issue has been resolved, and you should no longer encounter an error. The reason for this resolution lies in the nature of the #include directive, which essentially just copies and pastes the content of a file at the point where it is called.

What is preprocessor directive to add external files?

What is preprocessor directive to add external files?

Виберіть правильну відповідь

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 4
We're sorry to hear that something went wrong. What happened?
some-alt