HERE IS THE CODE FOR PRINTING HELLO WORLD USING C LANGUAGE #include<stdio.h> int main() { //print hellow world printf("hellow, world!"); return 0; } HOW THIS PROGRAM WORKS First of all , this is the basic program in c language #include is the predecessor that commands compiler to add stdio.h i.e.standard input and output int main is the main function which will be executed printf is used for printing/displaying text in printf command return 0 is written to exit for the program. THANK YOU LIKE SHARE AND COMMENT