c program to print hello world through scanf code example
Example 1: how to make a hello world program in c
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, World!");
return 0;
}
Example 2: print to screen c
printf("what do u print on screen"); //use \n between ""
//to skip a line