Answers for "c program to print hello world through scanf"

C
2

how to make a hello world program in c

#include <stdio.h>
#include <stdlib.h>

int main() {
  printf("Hello, World!");
  return 0;
}
Posted by: Guest on September-10-2020

Code answers related to "C"

Browse Popular Code Answers by Language