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

No comments:

Post a Comment

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...