Simple C Program - Devbhoomi

FREE JOB ALERT & ONLINE TUTORIALS

Hot

Post Top Ad

Sunday 5 November 2017

Simple C Program

Let's write c program to print Hello World.
PROGRAM CODE

        /*Program to print a Hello World*/

        //header file
        #include<stdio.h>

        //main function
        int main()
        {
        //Output statement
        printf("Hello World");

        //returning value to function
        return 0;
        }

No comments:

Post a Comment

Post Top Ad