C program to print "hello world"






One the most basic program of c language is print Hello world.

#include<stdio.h>
int main(){
    printf("Hello world");
    return 0;
}




No comments: