Skip to main content

Hello World - The First Program


Hello World The First Program 

Program

    File: - Helloworld.c

                #include <stdio.h>                            // header file 
                #include <conio.h>                           // header file

                void main() {                                    // main function with return type
                                                                
                        printf("Hello, World!");            // for display the your stetmant 
                        getch ();                                     // return type
                }


    Output: -
                    Hello, World!




    Practices Question: -

            1.   Print your name using printf statement?
            2.   Print your think, About India using a simple printf statement?








Comments

Popular posts from this blog

A Comprehensive Guide to C++: Introduction, Syntax, Advantages, Disadvantages, and Uses

Introduction Of C++ Introduction: C++ is a widely-used programming language known for its efficiency and flexibility. It was developed by Bjarne Stroustrup in the early 1980s as an extension of the C programming language. Stroustrup aimed to enhance C by incorporating features from Simula, a programming language that introduced the concept of classes and objects. The result was C++, which became popular for its ability to support both low-level programming and object-oriented programming paradigms. Today, C++ is utilized in various industries and applications, ranging from system programming and game development to high-performance software. Syntax: The syntax of C++ is derived from C, making it familiar to programmers already acquainted with the C language. C++ introduces additional features such as classes, objects, and inheritance, which enable the use of object-oriented programming techniques. Here's a basic example of a C++ program:            ...

Unveiling the Digital Frontier: The Dynamic Work of Information Technology

Unveiling the Digital Frontier: The Dynamic Work of Information Technology Introduction: In today's digitally driven world, the work of Information Technology (IT) professionals has become increasingly vital. From managing complex systems to safeguarding data, IT professionals play a critical role in enabling businesses and organizations to thrive in the modern era. This article explores the diverse aspects of IT work, shedding light on the responsibilities, challenges, and opportunities that professionals in this field encounter. 1. IT Infrastructure Management: One of the key responsibilities of IT professionals is the management and maintenance of IT infrastructure. This involves overseeing networks, servers, storage systems, and other hardware components to ensure smooth operations. IT experts are tasked with designing and implementing robust systems, optimizing performance, and addressing any issues that may arise. The rapid advancement of cloud computing and virtualization ha...

How to Make Professional Quality Videos For YouTube: Beginner's Tutorials

How to Make Professional Quality Videos For YouTube: Beginner's Tutorials To make videos for YouTube, you can follow these general steps: 1. Plan your video: Determine the purpose and content of your video. Decide on the topic, format, and structure. Consider the target audience and what they would find interesting or valuable. 2. Write a script or outline: Create a script or outline that outlines the main points or scenes of your video. This will help you stay organized and ensure that you cover all the necessary information. 3. Gather equipment and resources: Depending on the type of video you want to create, gather the necessary equipment and resources. This may include a camera (such as a smartphone or a dedicated video camera), a microphone for good audio quality, lighting equipment, and any props or materials needed for your video. 4. Set up your filming space: Choose a suitable location for filming. Consider the lighting, background, and noise levels. Make sure the space is ...