Hello World Example

A C program basically consists of the following parts: Let us look at a simple code that would print the words “Hello World”: #include <stdio.h>int main() { /* my first program in C */printf(“Hello, World! \n”); return 0; } Out Put Hello, World! Let us take a look at the various parts of the above … Read more