Hello world C
Hello world C How to write a hello world in C language? To learn a programming language, you must start writing programs in it, and this could be your first C program. Let’s have a look at the program first. #include <stdio.h> int main() { printf(“Hello world\n“); return 0; } Library function printf…
Read more