Answers for "hello world example"

2

c hello world

#include <stdio.h>

int main() {
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0;
}
Posted by: Guest on August-20-2020
1

hello world program

#include <stdio.h>

int main ()
{
	printf ("Hello, World!\n");
    
    return 0;
}
Posted by: Guest on September-24-2020
0

hello world in basic

PRINT "Hello, world!"
Posted by: Guest on March-03-2021

Browse Popular Code Answers by Language