Hello World Program in C Language – Basic C Program for Beginners
Basic c program Here we are writing basic c program to print Hello world . Program: #include<stdio.h> void main() { printf(“Hello World”); } Output: Hello World Printf() is a input function it is used to print statement on the screen. In programming c printf() and scanf() are predefined functions.these two functions are part of studio.h … Read more