Hello world program in C language with output

 Hello world program in C language

#include <stdio.h>

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

output


Post a Comment

0 Comments