Aug 23, 2024
//
/* comment */
#include <stdio.h>
printf
, scanf
).#include <conio.h>
getch
).#include <math.h>
sqrt
, pow
).#include <string.h>
strlen
, strcmp
).#define PI 3.14
main
function.main
:
int main() {
// declarations
// executable statements
return 0;
}
main
function.main
function but are not compulsory.#include <stdio.h>
int main() {
printf("Hello World");
return 0;
}