Menus

Sunday 1 December 2019

Write C program to print "Hello World"



ALGORITHM

1. BEGIN
2. PRINT "Hello World"
3. END

PROGRAM 


#include<stdio.h>
void main()
{
 printf("Hello World\n");

}


Print Hello World - Malayalam




Introduction to GCC and example



No comments:

Post a Comment