preprocessor in c October 15, 2025 | No Comments | C, information, preprocessor, preprocessor-directives When you translate the source code in .c you transform it into machine code When creating an executable from a C file, there are 2 […]
nomenclatures in programming languages October 14, 2025 | No Comments | C, information, java, python Java uses case in its abcDef functions (camelcase) Camel Case (or Camel Notation) is the standard and mandatory naming convention in Java syntax for naming […]
programming language, assembly language, and machine language | No Comments | C, information, java, python Machine language is a sequence of binary numbers (bits), that is, zeros and ones (0s and 1s) Each set of zeros and ones represents a […]
linking in c October 13, 2025 | No Comments | C, information the linker (the program that links the .o and libraries) The GCC linker does not first read main.o in cascade. The linker processes all object […]
include in c (preprocessor directive) | No Comments | C, information, preprocessor-directives The #include directive in C tells the preprocessor to look for a header file (.h) and copy its contents into the source file (.c) The […]