From here we will learn basic building blocks by which we make C program
auto, double, int, struct, break, else, long, switch, case, enum, register, typedef, char, extern, return, union, const, float, short, unsigned, continue, for, signed, void, default, goto, sizeof, volatile, do, if, static, while
#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}
#include <stdio.h>
int main()
{
printf
(
"Hello World\n"
);
return 0;
}