Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

how to print hello world in c

#include <stdio.h>

int main() {
	printf("Hello World!");
    
    return 0;
}
 
PREVIOUS NEXT
Tagged: #print #world
ADD COMMENT
Topic
Name
6+3 =