#ifdef #ifndef Conditional Compilation Directives | C Programming Tutorial

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

i just cant believe why your courses do not have most views for c youtube tutorials. Thank you so much for these lessons!!!

madinadumanova
Автор

Great video as always. I was wondering if you could make a video about socket programming in c, because i haven't found many videos that explain this topic on Youtube, and the ones i found don't really explain it in detail like you do in your videos. Your content is very informative. Keep up the good work man.

httkv
Автор

hey when you use -E that mean you stop in the first step (pre-processing) and the file d give you the result of this step. Please if this is correct tell me (options) how can get the other steps of compilation (compiling - assembling - linking)

appdeveloppement
Автор

Another Question :) I have this block of code in a header file (my_header_file.h) :
#ifndef MYHEADER_H
# define MYHEADER_H
/* some declaration functions */
#endif
My question is:
there is a relation between the name of headerfile (my_header_file.h) and this macro MYHEADER_H?
And what's the reason for using this Macro?

appdeveloppement