PRINT HELLO WORLD

PRINT HELLO WORLD:
In this program ,we use print statement to print "HELLO WORLD!" . The output statement can be printed in the following method.

CODE:
#include<stdio.h>
#include <stdlib.h>

int main()
{
  printf("HELLO WORLD!");// type the statement you want to print inside the " ".
}

Your Program Output:
HELLO WORLD!

Comments

Popular posts from this blog

PROGRAM TO PERFORM CALL BY REFERENCE

PROGRAM TO PERFORM RRETURN BY REFERENCE