C program to display "hello world"

C program to display Hello World...


#include <stdio.h>
int main()
{
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0;
}
OutPut

Hello, World!


Comments

Popular posts from this blog

C Program to Check Whether a Character is Vowel or Consonant

C Program to Find the Largest Number Among Three Numbers