VR Indian Wanderers Youtube RSS Feed
Learn with Vikas Suhag
Simple program to demonstrate use of comments and main function.
Nov 26, 2021   Vikas Suhag

Hello world program using C Language

// Simple program to demonstrate use of comments and main function.
// sINGLE LINE COMMENTS
/*
MULTI
LINE COMMENTS
*/
#include<stdio.h>
void main()
{
printf("Vikas Suhag");
}

// SINGLE LINE COMMENT
/* MULTI LINE COMMENTING
 */
#include<stdio.h> //HEADER FILES FOR STANDARD INPUT AND OUTPUT
void main() // MAIN FUNCTION THIS IS MANDATORY
{
    printf("VIKAS SUHAG"); // STATEMENT OR INSTRUCTION
    // ; IS ALSO CALLED TERMINATOR
}

 


Leave a Comment

* Email will not be published.
All comments are only visible after approval.
Most Viewed articles
Travel Blog - VR Indian Wanderers
VR Indian Wanderers
Govt. Jobs Portal
Govt. Jobs Portal
Free Chart Maker
Make free animated Charts from .CSV
Search
Youtube Channel
Podcast
Subscribe to Email Updates
Connect With Us
VR Indian Wanderers Youtube RSS Feed
© 2024 Learn with Vikas Suhag. All Rights Reserved.