how to make a hello world program in c

Solutions on MaxInterview for how to make a hello world program in c by the best coders in the world

showing results for - "how to make a hello world program in c"
Aniya
11 Sep 2020
1#include <stdio.h>
2#include <stdlib.h>
3
4int main() {
5  printf("Hello, World!");
6  return 0;
7}