OneCompiler

Explain one by one code

150

first one is --> #include or number sign. means -This is the main header file prepocessor function,wich preprocessor standard input and

output header files from the c library such as <stdio.h> before compiling the program. In short
#include directive ay isang mahalagang bahagi ng C programming na tumutulong sa pag-organize, pag-reuse, at pag-maintain
ng code.

Second is --> <stdio.h> -->this Is a standard library header file in c prog with set of input and output functions. macros,and variables. It is
essential for performing various input and output operations in c prog.
Ang header ng input and output ay important para sa pag perform ng input and output .Like scanf for input ang scanf para magbasa ng input mula
sa user. And printf para mag-print ng mga mensahe sa screen

Third is --> int main() --> This C statement, like most programming languages, is the main function, which is the point where the program
execution begins. Once the primary main () has been executed, all other methods and funtions are performed.
Ang int main() ay ang pangunahing function sa C programs. Ito ay ang entry point kung saan nagsisimula ang execution ng program.
Ang pagbabalik ng isang integer value (karaniwang 0) ay nagpapahiwatig ng status ng pagtatapos ng program. Ang paggamit ng
command-line arguments sa main function ay nagbibigay-daan para sa mas dynamic na execution ng mga program.