Sunday, November 30, 2025

My First C Program

My First C Program

Try the following C program which prints the message of "Hello World".


// My First C Program

#include <stdio.h> 

void main() 

{

    printf("Hello World"); 

}

Program Output:

Hello World


You can also write the main() function as shown below:

// My First C Program

#include <stdio.h> 

int main() 

{

    printf("Hello World"); 

    return 0;

}

Program Output:

Hello World

Monday, October 7, 2024

Digital Marketing Agency

Welcome To Our Digital Marketing Agency

We Help Businesses Grow Online

Our Services

Search Engine Optimization (SEO)

Improve website's visibility on search engines with our expert SEO strategies.

Social Media Marketing

Engage audience and grow your brand through targeted social media campaigns.

Content Marketing

Creating compelling content that attracts and retains customers.

Email Marketing

Reach customers directly with personalized email campaigns.

Contact Us

My First C Program

My First C Program Try the following C program which prints the message of " Hello World ". // My First C Program #include <std...