C Language Program (printf)

#include <stdio.h>
int main() {
      / / printf() displays the string  inside
      printf("Hello World!");
      return 0;
}

Comments