Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

hello world in c

#include <stdio.h>
int main() {
   // printf() displays the string inside quotation
   printf("Hello, World!
");
   return 0;
}
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
1+1 =