How to write Hello world in c programming

Hello world! Program

C
// Visit : Pickupmyskills.com

#include <stdio.h>  

int main() {  
    printf("Hello, World!\n");  
    return 0;   
}

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top